Code snippets and notes from the Hands-on introduction course to Python by Jacek Generowicz, held at CERN.
http://jacek.web.cern.ch/jacek/courses/python-intro/course.html
Stuff starting with underscore (_
) are handouts from the course instructor and not written by me.
(Hello future self!)
(Thanks, past self!)
set the user.name
and user.email
config variables for the repository:
git config --file .git/config user.name "otron"
git config --file .git/config user.email EMAILS_YO
git clone https://[email protected]/otron/python-intro-course-cern.git
if you cloned it with the https read-only url (https://github.com/...
) do:
git remote set-url origin https://[email protected]/otron/python-intro-course-cern.git
to fix it.