美文网首页
repo / git commit gerrit

repo / git commit gerrit

作者: 大大大寒 | 来源:发表于2017-11-02 10:39 被阅读83次

首先

git status  

查看当前状态
可能会提示:当前不在任何分支上。
没关系 新建一个临时分支

repo start b22b1 .

git branch
* b22b1

再次查看状态

git status

提示:位于分支 b1711

然后 对比一下文件改动

git diff

提示:diff --git xxxx/xxx/test.txt

然后 添加当前目录

git add . 

再次查看状态

git status

应该可以看到
位于b22b1分支 修改: xxxx/xxx/test.txt
然后提交

 git commit -a

下面需要写一个 提交的头部信息
先随意了,,下一篇会讲commit message 格式规范
查看一下 log 就能看到这次的提交信息了

 git log

ok 再次提交 amend修该上次提交

git commit --amend

最后 upload 当前目录

repo upload .

最后生成信息 可以去code review了

相关文章

网友评论

      本文标题:repo / git commit gerrit

      本文链接:https://www.haomeiwen.com/subject/rhkopxtx.html