computer_science:git:resources:git_cheatsheet

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>"
git push
# 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
# Fix with
git remote set-url origin git@github.com:<username>/<rep>.git
 
# Push the branch
git push origin <branch-name>
  • computer_science/git/resources/git_cheatsheet.txt
  • Last modified: 2023/12/01 12:07
  • by 127.0.0.1