git远程上传文件至github

Posted tanshengjiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git远程上传文件至github相关的知识,希望对你有一定的参考价值。

首先在github 上创建一个仓库,也可以创建一个组,几个人一个组创建一个仓库,共同去完成 任务并且可以资源共享。

在创建完仓库之后,然后进入终端,下载git

首先把仓库克隆到git上,命令为

:git clone https://github.com/jjuc/developRos.git

在终端输入git 就可以看到很多指令   jjuc代表我自己创的组,developRos 表示我创的仓库。

成功如下

qqtsj@qqtsj-Nitro-AN515-51:~$ git clone https://github.com/jjuc/developRos.git
正克隆到 developRos...
remote: Enumerating objects: 223, done.
remote: Counting objects: 100% (223/223), done.
remote: Compressing objects: 100% (173/173), done.
remote: Total 223 (delta 92), reused 160 (delta 41), pack-reused 0
接收对象中: 100% (223/223), 38.46 KiB | 307.00 KiB/s, 完成.
处理 delta 中: 100% (92/92), 完成.

然后在git的developRos目录下创建你的文件并敲写你的代码

然后执行下列操作

git add .
git commit

 

每次上传文件时,要保证库处于最新状态

可用 git pull  验证一下

最后上传文件

git push

成功如下

qqtsj@qqtsj-Nitro-AN515-51:~/developRos/tan_py$ vim lock.py
qqtsj@qqtsj-Nitro-AN515-51:~/developRos/tan_py$ git commit -m first_commit
[master f8f7956] first_commit
 1 file changed, 23 insertions(+)
 create mode 100644 tan_py/lock.py
qqtsj@qqtsj-Nitro-AN515-51:~/developRos/tan_py$ git remote add origin https://github.com/findingsea/myRepoForBlog.git
fatal: 远程 origin 已经存在。
qqtsj@qqtsj-Nitro-AN515-51:~/developRos/tan_py$ git pull
已经是最新的。
qqtsj@qqtsj-Nitro-AN515-51:~/developRos/tan_py$ git push
Username for https://github.com: tanshengjiang
Password for https://tanshengjiang@github.com: 
对象计数中: 4, 完成.
Delta compression using up to 4 threads.
压缩对象中: 100% (4/4), 完成.
写入对象中: 100% (4/4), 586 bytes | 586.00 KiB/s, 完成.
Total 4 (delta 2), reused 0 (delta 0)
remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
To https://github.com/jjuc/developRos.git
   61048ab..f8f7956  master -> master

 

以上是关于git远程上传文件至github的主要内容,如果未能解决你的问题,请参考以下文章

大数据攻城狮之进阶技能-使用Git上传自己的项目至GitHub仓库

git本地上传代码至GitHub命令

git上传代码到github远程仓库

用Git将代码上传至GitHub

如何将本地代码使用Git上传至Github

如何将本地代码上传至git仓库