赞
踩
git操作笔记,初级使用教程请参考 git cheatsheet 。
git add .
git rm .
git commit -m "first commit"
git push
git branch
git branch -a
git checkout -b dev
git pull origin gh-pages:gh-pages
需要本地没有gh-pages分支,否则会提示已拒绝
git branch --set-upstream-to=gh-pages
git push origin gh-pages
如何修改一个commit:
git fetch ssh://xxx@xxxx/xxx/xxx refs/changes/20/190820/6 && cherry-pick FETCH_HEAD
具体指令需要看gerrit网页右上角:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-W4EvPfBS-1691633700547)(./res/git-fetch.jpg)]
此时git status
当前是有y一个commit的,git log
也能看到log。
git add
#使用 --amend 重新更新这个commit信息。
git commit --amend
需要指定具体push到哪个id
git push origin HEAD:refs/changes/<change id>
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-pFsDnj8k-1691633700548)(res/git-cheatsheet.png)]
Gitlab 官方提供的 git cheatsheet 。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。