码迷,mamicode.com
首页 > 其他好文 > 详细

使用git bash向github远程仓库提交代码

时间:2018-08-18 18:36:38      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:new   tps   打开   odi   初始   登录   ast   http   内容   

1、登录github,创建仓库。

2、切换到要提交的文件目录下。

3、打开git bash 

  3.1、初始化仓库

git init 

  3.2、将本地仓库与远程仓库关联

git remote add origin https://github.com/lis-ylfy/config-test.git

  3.3、测试是否连接成功

git remote

  输出origin表示成功

  3.4、将文件提交到暂存区

git add .

 注意add 后面是空格,然后是 .

git add . : 监控工作区的状态树,使用它会把工作时的所有变化提交到暂存区,包括文件内容修改(modified)以及新文件(new),但不包括被删除的文件。

  3.5、填写提交说明

 git commit -m "first commit, first version"

  -m 后面就是提交说明

  3.6、提交到远程仓库

git push -u origin master 

  master是指主干分支

使用git bash向github远程仓库提交代码

标签:new   tps   打开   odi   初始   登录   ast   http   内容   

原文地址:https://www.cnblogs.com/shun-gege/p/9497967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!