Show local and remote branches
1 | git branch |
See branches sorted by the last commit
1 | git branch --sort=-committerdate |
Note: some git commands require installing globally NPM module diff-so-fancy.
1 | npm i -g diff-so-fancy |
See the diffs with the log
1 | git log -p |
Get the file from another branch
1 | git checkout <branch name> <filename> |
Checkout previous branch
Just like cd -
goes to the previous working directory, git checkout -
goes to the previously checkout branch.
Git CLI commands
I use git-extras to perform all my Git commands from the terminal.
Remove untracked files
Sometimes you get a bunch of generated files in the repo, and would like to remove them.
1 | first, see which files will be removed |
Merge another branch with default merge message
Typically, if you execute git merge <branch name>
it merges that branch into the current branch. The merge creates a commit and Git asks you to edit the commit message. You can avoid editing and just accept the default message.
1 | git merge <branch name> --no-edit |
Copying a repository
To quickly download a snapshot of a remote repository and remove its .git
folder (for example to start your own project), use the tool degit. You can even specify a tag to clone and subfolder
1 | npx degit user/repo |
See more
Read my other Git blog posts, starting with Git aliases.