美文网首页Git
给Git版本库配置全局的提交者信息

给Git版本库配置全局的提交者信息

作者: 如来自然 | 来源:发表于2016-01-05 17:49 被阅读61次

    其实在上一篇的提交的输出里面已经有了

    [root@git git_test]# git config --global user.name "Your Name"
    [root@git git_test]# git config --global user.email you@example.com

    上面两条命令是全局的,也就是你电脑上所有的版本库都生效!

    测试上面的设置

    首先我们对文件做下修改

    [root@git git_test]# echo test>>git_test_file

    然后我们提交到版本库

    [root@git git_test]# git commit git_test_file

    查看提交历史

    [root@git git_test]# git log
    commit 2b9e2589379c5ca4544b8e2003f8e49d9b6dbac3
    Author: Your Name you@example.com
    Date: Fri Dec 18 20:21:09 2015 -0800

    v2
    

    commit 9cb4509991533d45bf9c0541eb86592485e8f350
    Author: fuchao 961769710@qq.com
    Date: Fri Dec 18 20:06:26 2015 -0800

    Submission instructions
    

    [root@git git_test]#

    可以看到,提交者姓名和邮箱可以看到已经成了我们的修改,顺便我们可以看到提交是从最新到过去排序的。

    commit 后面跟着的长长的字母很有用,它是id唯一的!在后面的教程里我们会讲到!

    相关文章

      网友评论

        本文标题:给Git版本库配置全局的提交者信息

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