用git怎样给push到github的每个文件添加备注

用git怎样给push到github的每个文件添加备注,第1张

$ git add text/text1.txt

$ git commit -m "text1"

$ git add text/text2.txt

$ git commit -m "text2"

$ git push origin master

单独add 单独commit测试可行。其他方法不清楚。但是外部文件夹的message会是最后一次commit提交的message。

如下步骤:

1.创建xxx_template文件,其内容为团队制定的Git提交注释规范,如:

Desgraption: 

Date: 

Author:

2.通过git config命令配置commit_template,如:

git config –global commit.template /d/develop/Git/Git_Home/commit_template

3.设置git commit时填写注释所用的编辑器,如:

git config –global core.editor vi

OK,设置完成,提交使用git commit会出现与下图相似的界面填写好注释才能提交成功:


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/7962329.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-12
下一篇 2023-04-12

发表评论

登录后才能评论

评论列表(0条)

保存