美文网首页
Git 18使用别名

Git 18使用别名

作者: 昵称啦啦啦 | 来源:发表于2018-11-30 13:41 被阅读0次

    GIt 使用别名

    ========

    在Git中可以将经常使用的命令以别名缩写的方式简化使用

    命令

    • git config --global alias.[name] + [comand_name]
    • git config -l 查看全局配置

    代码

    # 将checkout 命令简化为co
    git config --global alias.co checkout
    # 将branch 命令简化为br
    git config --global alias.br branch
    # 将status 命令简化为st
    git config --global alias.st stastus
    

    相关文章

      网友评论

          本文标题:Git 18使用别名

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