This is an intro level presentation on Git. In this presentation, I give some background on Git, discuss key concepts behind Git, and introduce some Git commands.
#add contents to the next commit git add #show the working tree status git status #record changes to the repository git commit #show commit log git log
git checkout -b myfeature #make some changes and commit git commit -a -m "made some changes" #switch to master and rebase changes git checkout master git rebase myfeature git svn rebase #commit changes to svn git svn dcommit