美文网首页Git简单应用
Git 学习笔记(别名篇)

Git 学习笔记(别名篇)

作者: TW安洋 | 来源:发表于2016-12-04 22:15 被阅读8次

    配置命令别名

    git config --global alias.别名 原名

    效果如下所示:

    $ git config --global alias.ck checkout
    $ git branch
    master
    newbranch
    * originbranch
    $ git ck master
    Switched to branch 'master'
    Your branch is up-to-date with 'origin/master'.
    $ git branch
    * master
    newbranch
    originbranch

    相关资料:

    1. Git 官网
    2. Git 官方文档
    3. [廖雪峰的 Git 教程](http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8
      067c8c017b000)
    4. Git 常用命令查询文档
    5. Git 在线学习网址 xue

    相关文章

      网友评论

        本文标题:Git 学习笔记(别名篇)

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