- stackoverflow.com/questions/3419658/understanding-git-fetch-then-merge - answer to svn status -u update problem
- git.or.cz/course/svn.html - svn2git converter guide
- gitready.com - A good beginners guide
- learn.github.com - Good quick reference
git config --global user.name "Your Name Comes Here"
git config --global user.email [email protected]
git clone url
git pull
git init
git add .
git commit
git status
git apply
git checkout path
git add file
git rm file
git mv file
git commit -a -m "Commit Msg"
git log
git blame file
git show rev:path/to/file
git show rev:path/to/directory
git show rev
git tag -a name
git tag -l git tag --list git show tag
git tag -d "123"
git push origin :refs/tags/123
git branch branch
git checkout branch
git branch
git checkout rev
git checkout prevbranch
git checkout --track -b branch origin/branch
git remote show
git remote show origin