美文网首页
git 常用命令

git 常用命令

作者: zhangxt456 | 来源:发表于2019-06-15 15:45 被阅读0次

    1、记住密码:

    git config --global credential.helper store
    

    2、查看远程仓库:

    git remote -v
    

    3、创建分支并切换到指定远程分支
    git checkout -b 本地分支名 origin/远程分支名

    git checkout -b dev origin/dev
    

    相关文章

      网友评论

          本文标题:git 常用命令

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