We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
git 删除远程分支:git push origin --delete{} git查看远程分支:git branch -r git 切换远程分支:git checkout [name] git stash 保存当前修改 但不提交commit git stash apply{stash@{n}} 回到某个stash状态
将某次提交应用到指定分支 git checkout {branch-name} git cherry-pick {hash}
git branch -m new-name
git push origin :old-name new-name
git push origin -u new-name
How to change your commit messages in Git
更多Tips
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Git
git 删除远程分支:git push origin --delete{}
git查看远程分支:git branch -r
git 切换远程分支:git checkout [name]
git stash 保存当前修改 但不提交commit
git stash apply{stash@{n}} 回到某个stash状态
将某次提交应用到指定分支
git checkout {branch-name}
git cherry-pick {hash}
重命名分支名
git branch -m new-name
git push origin :old-name new-name
git push origin -u new-name
Git commit重命名
How to change your commit messages in Git
更多Tips
The text was updated successfully, but these errors were encountered: