Git

GIT - Update from the remote repository

Fetch and merge changes on the remote server to your working directory:    

git pull

To merge a different branch into your Read More

GIT - Tags

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

git tag

This Read More

Git - List your existing remotes

Git - List your existing remotes

git remote -v

Read More

GIT - Search

Search the working directory for foo():

git grep "foo()"

Read More

GIT - Reset A Specific Commit

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

Git Reset vs Revert vs Checkout

 

Command Scope Common use cases Read More