Now we continue:
Tell Git who you are: git config –global user.name “Sam Smith” or git config –global user.email sam@example.com
Status: git status
Branches: git checkout -b (branchname)
Update from the remote repository: git pull
Tags: git tag 1.0.0 (commitID)
Undo local changes: git checkout – (filename)
Search: git grep “foo()”
For more detail, check out the Atlassian Git Tutorials