远程

作者: skoll | 来源:发表于2022-06-27 10:52 被阅读0次

    1 本地有一个git 仓库,远程也新建了一个,关联二者

    1 .关联 git remote add origin git@github.com:michaelliao/learngit.git
    2 .推送 git push -u origin master 把本地库的内容推送到远程
    3 .git push origin master 之后的修改可以直接用这个指令推送

    1 .-u git会把本地的master分支内容推送到远程新的master分支,还会把本地的master分支和远程的master分支关联起来
    

    2 .拉取远程,本地新建分支,推送到远程分支,并且关联

    1 .git clone git@github.com:michaelliao/gitskills.git

    1 .ssh最快
    2 .https每次都需要输入密码
    

    2 .git checkout -b feature-branch //创建并切换到分支feature-branch
    3 .git push origin feature-branch:feature-branch
    //推送本地的feature-branch(冒号前面的)分支到远程origin的feature-branch(冒号后面的)分支(没有会自动创建)

    3 删除远程库(解除了本地和远程的绑定关系)

    1 .git remote -v 查看远程库
    2 .git remote rm <name>

    4 本地分支推送到远程对应分支

    1 .git push origin feature-0630:stage 把本地的feature-0630 分支推送到远程的stage分支

    相关文章

      网友评论

          本文标题:远程

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