Skip to content

Instantly share code, notes, and snippets.

@barlas
Forked from ramesaliyev/Git Cheat Sheet
Last active August 29, 2015 14:11
Show Gist options
  • Save barlas/83deef1a9d25825ebefb to your computer and use it in GitHub Desktop.
Save barlas/83deef1a9d25825ebefb to your computer and use it in GitHub Desktop.
git add .
git commit -m "message"
git show --pretty="format:" --name-only
git push
delete: git rm -r filename
- Create a repository
git init <repo-name>
git clone <url> <directory-name>
git clone -o <remote-name> <url>
- Commiting
git add <filename>
git commit -m "Commit Message"
- Remote
git remote
git remote show <remote-name>
git remote add <remote-name> <remote repository URL>
git push <remote-name> <branch-name>
- Branch
git branch <branch-name>
git branch -d <branch-name> (delete)
git push origin :<branch-name> (delete from remote)
git checkout <branch-name>
git checkout -b <branch-name> (create and switch)
- Merge
git merge <branch-to-merge>
- Reset
git log
git checkout <commit-id>
git reset HEAD --hard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment