美文网首页
git和github入门指南(3.1)

git和github入门指南(3.1)

作者: 螺钉课堂 | 来源:发表于2019-12-23 10:01 被阅读0次

    3.远程管理

    #3.1.远程仓库相关命令

    1.查看远程仓库名字,这里以github为例

    git remote    
    
    

    上面命令执行后会得到:origin,这样一个名字,这个名字是我们克隆的时候默认设置好的

    如果你想更改origin这个名字,可以通过这样的命令:

    // 语法: git remote rename old new 自定义名字
    git remote rename origin neworigin
    
    

    2.查看远程仓库的地址

    git remote -v
    
    

    3.添加一个仓库

    git remote add neworigin http://git.nodeing.com/code
    
    

    4.查看指定仓库地址

    git remote get-url neworigin
    
    

    5.设置指定仓库地址

    git remote set-url neworigin http://www.nodeing.com
    
    

    6.push代码到github上

    git push origin master
    
    

    注意:如果提示输入用户名和密码,需要输入正确github的用户名和密码才能正确推送到github上

    7.删除指定仓库

    git remote rm neworigin
    
    

    #3.2.设置项目的贡献者

    一个项目如果多人参与,这个仓库的创建者需要去设置合作者,其他人才有权限参与到这个项目中,把代码同步到github上

    image

    在图中箭头3处的表单中,输入合作者的github名字,然后点添加

    image

    添加完成后,你可以把仓库地址分享给你的合作者:

    image

    注意:你的合作者需要点击你分享的这个链接,接受邀请才会有权限push代码到你创建的这个仓库

    接下来,我们使用另一个合作者的账号(nd-00002)提交代码,nd-00002拿到你分享的链接后做了以下操作:

    1.克隆仓库

    git clone https://github.com/nodeing666/git-demo.git
    
    

    2.修改项目代码,在index.html增加一些样式

    <style>
      body{
        background-color: green;
      }
    </style>
    
    

    3.提交代码到暂存区

    git add index.html
    
    

    4.提交代码到版本库

    git commit -m '首页增加背景色'
    
    

    5.把代码推送到远程仓库

    git push origin master
    
    

    nd-00002这个同学经过这些操作后,你就可以在github仓库中查看到相应的commit信息了

    image

    相关文章

      网友评论

          本文标题:git和github入门指南(3.1)

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