[Git] Delete multiple branches in one command

We have git branch -D BRANCH_NAME command to delete a specific branch in git repository. But How should we clean up a repository which...

GIT revert to Previous Commit

This depends a lot on what you mean by "revert". Temporarily switch to a different commit If you want to temporarily go ba...

Merge specific files from another git branch

In Git, branches may be a part of your everyday development process. When you want to add a new feature or fix a bug - you spawn a new bra...

Install git and git client on Window

Installing Git on Windows is very easy. For Windows, i recommend using Git with a git client like source tree to save your time from typing...

View and setting your email, user name in GIT

1. Setting your email and view it in GIT To change  your email in GIT, just type : git config --global user.email " yourname@emails...