Topic: git
Tips and references for Git
PURPOSE There are times when you have to do something related to your version history, but you forget which command to use. This is Handy…
Git-Fu - How to be a Git Detective
PURPOSE There are times when you need to figure out exactly who made the changes in a file. Sometimes, the standard command will suffice…
The power of Git Reflog
Introduction Reflog is a powerful tool provided by Git and helps us in solving a variety of problems. This blog will try to address some of…
The power of Git Rebase
Introduction Git, is the Version control system used by almost all the open-source (and many closed source) projects today. However, not…
Git Revert (Quick Reference)
###PURPOSE Reverting to a previous state of your codebase can be challenging and at times scary, but mistakes do happen and in times like…
How to Assign a specific Author for a specific repository.
PURPOSE If you have multiple accounts on your machine, chances are you end up making commits from the wrong author in a repository. To avoid…
How to change Author of a previous Git Commit.
PURPOSE To change the Author of a previous commit in a Repository. Many times you end up commiting and pushing changes to a repository from…
Merging an upstream repo into your fork
This article is from Github's help page here I am adding it here to quickly reference it when I inevitably forget how to do it. If you don't…
