Back

Cheatsheet Git

GIT cheatsheet


  • Change username and email attached to your commits
1
2
git config --global user.name "your name"
git config --global user.email "your email"
  • Create new repository from existing project and push it to github
1
2
3
4
5
git init
git add .
git commit -m 'initial commit'
git remote add origin https://github.com/username/my_awesome_project
git push -u origin master
  • Remove branch with name “branch1”
1
git branch -d branch1
  • Change latest un-pushed commit message
1
git commit --amend -m "New commit message"
  • If you already pushed multiple commits to the remote repository you can use rebase to edit commit messages
1
git rebase -i HEAD~n
  • Show git commits for the specific file:
1
git log -- path/to/the/file.txt
  • Show git commits and changes for the specific file:
1
git log --follow -p -- path/to/the/file.txt
  • git fetch vs git pull:

git pull does a git fetch followed by a git merge

  • Show difference between branches
1
git diff branch1..branch2
  • Set username and committer in shell session:
1
2
3
4
export GIT_AUTHOR_NAME="John Doe";
export GIT_AUTHOR_EMAIL=john.doe@example.com;
export GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME";
export GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL";
  1. GIT workflow example: https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow
  2. https://stackoverflow.com/questions/292357/what-is-the-difference-between-git-pull-and-git-fetch
  3. GIT docs: https://git-scm.com/docs
  4. GIT everyday: https://git-scm.com/docs/giteveryday
Licensed under CC BY-NC-SA 4.0
Built with Hugo
Theme Stack designed by Jimmy