美文网首页
本地项目如何关联到远程Git库

本地项目如何关联到远程Git库

作者: chinariver | 来源:发表于2019-11-18 11:23 被阅读0次

    注意:我是在coding.net上建立的一个新的项目,没有初始化,

    启用 README.md 文件初始化项目这个地方千万不要勾选,因为他会在远程初始化一个项目,到第5步的时候,会造成冲突,所有,为了避免麻烦,在coding.net上建立Git库,就建一个空的,不启用README.md文件初始化项目,然后到第5步,才不会出错,切记,切记,切记。

    还有一点,如果,按照我上面说的做了,建立一个远程的coding空的仓库,第5步可以不用执行了,

    2019-12-25 Merry Christmas

    1.进入项目文件夹,通过git init 命令,把这个目录变成git可以管理的仓库

    git init

    2.把文件添加到本地版本库中,使用git add 命令,添加到暂存区,如果后面接小数点“.”,意为添加文件夹下的所有文件

    git add .

    3.使用git commit 命令,把文件提交到本地仓库。引号内为提交说明

    git commit -m 'first commit'

    4.关联到远程库

    git remote add orgin 你的远程地址

    如:

      git remote add origin git@111:1111.git

    如果上面步骤写错了:则

          git remote rm origin  //删除origin

          git remote add origin git@git.oschina.net:yourname/demo.git  //重新添加origin

    5、获取远程库与本地同步合并(如果远程库不为空必须做这一步,否则后面的提交会失败)

    git pull --rebase origin master

    6、将最新的修改推送到远程仓库:

    git push -u origin master

        备注:origin:远程仓库名字;master:分支

    注意:我们第一次push的时候,加上-u参数,Git就会把本地的master分支和远程的master分支进行关联起来,我们以后的push操作就不再需要加上-u参数了

    如果出现类似下面内容:

    Username for 'https://github.com': shiren1118

    Password for 'https://shiren1118@github.com':

    To https://github.com/shiren1118/iOS_code_agile.git

    ![rejected]        master -> master(non-fast-forward)

    error: failed to push some refs to'https://github.com/shiren1118/iOS_code_agile.git'

    hint: Updates were rejected because the tip of yourcurrent branch is behind

    hint: its remote counterpart. Merge the remote changes(e.g. 'git pull')

    hint: before pushing again.

    hint: See the 'Note about fast-forwards' in 'git push--help' for details.

    则输入命令:git push -u origin master –f 即可搞定问题

    二。如何从git服务器上获取文件:

    如果从在git服务器所在主机上的其他账户获取git服务器上面文件,则直接用

    1. git clone + git仓库的路径,即:gitclone /srv/sample.git/

    git remote add origin git@git.dev.tencent.com:iOS_wcj/api_uterm.git

    git push -u origin master

    相关文章

      网友评论

          本文标题:本地项目如何关联到远程Git库

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