美文网首页
Git备忘录

Git备忘录

作者: renweiwb | 来源:发表于2014-12-01 22:38 被阅读0次

    1. 配置

    git config user.email your_mail@nsn.com

    git config user.name your_name

    2. 分支

    - 显示所有远程分支

    git branch -r

    - 创建新的本地分支

    git checkout -b [local_branch_name]

    - 切换本地分支

    git checkout local_branch_name

    相关文章

      网友评论

          本文标题:Git备忘录

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