美文网首页
使用终端命令行将本地项目上传到Github并提交代码

使用终端命令行将本地项目上传到Github并提交代码

作者: 上路喽 | 来源:发表于2018-09-30 09:05 被阅读10次

使用终端命令行将本地项目上传到Github并提交代码

第一步: 在Github上创建自己的repository

第二步:建立本地仓库cd到你的本地项目根目录下,执行git命令

1:$ cd 到你的项目目录下

第二步:在内部会生成.git文件夹,如果已经有,可以跳过

2:$ git init 

第三步:将本地项目工作区的所有文件添加到暂存区

3:$ git add . 

第四步:将暂存区的文件提交到本地仓库

4:打标签

git tag -a 2.6.5 -m "Release version 2.6.5"

提交标签的到github

git push origin --tag 2.6.5

或git push origin --tags

删除标签的命令

git tag -d 2.6.4

删除远端服务器的标签

git push origin :refs/tags/2.6.5

加注释

$ git commit -m "注释"

第五步:将本地仓库关联到Github上,如果已经关联,则不需要再关联

5:$ git remote add origin https://github.com/zhibinhsu/ShowAllLabel.git用自己的url(创建的仓库的地址,赋值地址栏里面的地址即可)

这步骤如果提示错误:fatal: remote origin already exists. 解决办法如下:

1、先删除远程 Git 仓库 $ git remote rm origin 

  2、再重新添加远程 Git 仓库 $ git remote add origin https://github.com/zhibinhsu/ShowAllLabel.git用自己的url(创建的仓库的地址,赋值地址栏里面的地址即可)

第六步:同步到服务器

6:$ git push -f origin master

a、使用sourcetree,点击标签,就可以给项目打标签了,打完标签之后要提交并推送到github,具体见图:

b、使用tag命令

打标签

git tag -a 2.6.5 -m "Release version 2.6.5"

提交标签的到github

git push origin --tag 2.6.5

或git push origin --tags

$ git commit -m "注释"

提交代码 

git push -f origin master

相关文章

网友评论

      本文标题:使用终端命令行将本地项目上传到Github并提交代码

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