Git
Joker_iuv
文歌属予,琴瑟佳棋
展开
-
Git Rebase指南
git rebase [-i | --interactive] [<options>] [--exec <cmd>] [--onto <newbase>] [<upstream> [<branch>]]git rebase [-i | --interactive] [<options>] [--exec <cmd>] [--onto <newbase>] --root [<branch&g原创 2020-12-30 17:11:45 · 281 阅读 · 0 评论 -
Commit message 和 Change log 编写指南
作者: 阮一峰日期: 2016年1月 6日Git 每次提交代码,都要写 Commit message(提交说明),否则就不允许提交。$ git commit -m "hello world"上面代码的-m参数,就是用来指定 commit mesage 的。如果一行不够,可以只执行git commit,就会跳出文本编辑器,让你写多行。$ git commit但是,一般来说,commit message 应该清晰明了,说明本次提交的目的。目前,社区有多种 Commit message 的写法转载 2020-12-04 15:05:37 · 392 阅读 · 0 评论 -
Git 相关配置 用户名、邮箱
在Git中设置自己的姓名在Git中,自己的姓名与每一个commit提交绑定在一起。如果你在使用Azure DevOps Server中的Git Repo时,一定要注意commit中的提交者与服务器上的推送者,是两个概念。在Git中,设置自己的名字有两个层面的内容:全局设置(global),库设置。全局设置中的设置会影响所有库,库层级的设置只会影响特定的库。设置全局属性打开命令行窗口或者git bashgit config --global user.name "Joker"git conf.原创 2020-12-04 14:28:27 · 446 阅读 · 0 评论