GIT has become one of those tools in e business that you can't ignore anymore. So I suggest you learn to use the basics of the idea called GIT. For my tester friends, as you enter the automation phase, git is going to come around sooner or later. So watch out.
Important everyday command with GIT
1. How to revert to an old commit both on local and remote
git reset --hard HEAD~1git push -f origin master
2. How to get all branches of a git project
git fetch --all
3. How to delete a branch from local computer
git branch -d name
4. How to delete a remote branch
git push origin --delete branch
5. How to shift changes from one branch to another
git stashgit checkout branchgit stash pop