美文网首页
Git 设置 alias

Git 设置 alias

作者: 北山学者 | 来源:发表于2017-12-25 17:25 被阅读0次

    git config --global alias.别名 命令
    比如:
    git config --global alias.br branch

    也可以设置一个 git 的别名 gti:

    # 编辑 .bash_profile,新增一行 
    alias gti='git'
    # 使配置生效
    source ~/.bash_profile
    

    相关文章

      网友评论

          本文标题:Git 设置 alias

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