computer_science:git:resources:git_cheatsheet

This is an old revision of the document!


Git Cheatsheet

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.1605799735.txt.gz
  • Last modified: 2023/12/01 12:07
  • (external edit)