computer_science:git:resources:git_cheatsheet

This is an old revision of the document!


Git Cheatsheet

git init
git remote add origin <url>
git fetch
git branch --set-upstream-to=origin/<branch> master
git pull
# Add all changes to the commit
git add .
# Commit with Comment
git commit -m "<comment>"
# Checkout
git checkout --orphan latest_branch
 
# Add all the files
git add -A
 
# Commit the changes
git commit -am "commit message"
 
# Delete the branch
git branch -D master
 
# Rename the current branch to master
git branch -m master
 
# Finally, force update your repository
git push -f origin master
  • computer_science/git/resources/git_cheatsheet.1605805376.txt.gz
  • Last modified: 2023/12/01 12:07
  • (external edit)