Fetch and merge changes on the remote server to your working directory:
git pull
To merge a different branch into your Read More
Creating a tag
git tag
Annotated Tags
git tag -a v1.4
git tag -a v1.4 -m "my version 1.4"
Lightweight Tags
git tag v1.4-lw
Listing Tags
This Read More
Git - List your existing remotes
git remote -v
Search the working directory for foo():
git grep "foo()"
resetting is a way to move the tip of a branch to a different commit. This can be used to Read More
Git Reset vs Revert vs Checkout