Avery A.
Avery is a mechanical engineer turned software working at the Minerva Project- a startup that’s starting a brand new university. She lives and works in San Francisco.
Introduction to Using Git
on a mac: http://sourceforge.net/projects/git-osx-installer/
on a pc: http://msysgit.github.io
http://averycodes.com
Software Engineer, Minerva Project
Versioning
add grapefruit
remove potatoes
add milk
add butter
on github
in commandline
git config --global user.email <email>
git config --global user.name <name>
git config --list
Open the command line tools, add your name and email
https://github.com/averymanderson/teaching-git
Navigate to github, copy the https clone url and clone the repository to your computer
Add your name to pyladies.txt, make a commit with an informative commit message
Push your changes to the server. Pull updates from the server. Resolve merge conflicts.
Push your changes to the server. Pull updates from the server. Resolve merge conflicts.
Branch off from master. Add some people to the list who should be pyladies. Merge your branch back into master
By Avery A.