​来这里标个⭐^_^​

Ⅰ. c d cd cd到上传文件夹的位置

先把要上传的项目文件夹整理好,打开 g i t git git

如图所示,使用 c d cd cd命令索引到需要上传文件夹的位置

使用git上传项目到github_本地库

Ⅱ.输入​​git init​​初始化

使用git上传项目到github_git_02

然后会在你那个文件夹里生成一个叫 . g i t .git .git的文件夹别问我有什么用

Ⅲ.输入​​git add .​

注意 . . .前面是有空格的,假如没用,再试试往 . . .后面加个空格

Ⅳ.输入​​git commit -m "mycommit"​

当然双引号里面的内容随意,没什么用


使用git上传项目到github_git_03

Ⅴ.先在 g i t h u b github github上创建好仓库

点击那个 N e w New New,新建一个仓库


使用git上传项目到github_git_04

使用git上传项目到github_本地库_05

这个是填仓库名,你随意


使用git上传项目到github_github_06

然后这三个也不需要,直接 c r e a t e create create就好了

使用git上传项目到github_git_07

然后记住一下这个 h t t p s https https网址,下面要用到。

Ⅵ.输入​​git remote add origin https/git@github.com:issue-K/qt-.git​

当然 h t t p s . . . https... https...那堆网址写你自己的,就是上面要你记住的那个

使用git上传项目到github_github_08

如果这步报了错,报错是

fatal: remote origin already exists.

那就把以前的先删掉,也就是输入命令​​git remote rm origin​

然后和上面一样操作即可

Ⅶ.输入​​git push -u origin master​

使用git上传项目到github_github_09

然后就大功告成了,接下来会让你登录 g i t h u b github github的账号

老老实实填用户名和密码就好了

然后就没了…

一些错误

​LINK​

​error: failed to push some refs to 'https://github.com/bluetata/​

问题原因:远程库与本地库不一致造成的,在hint中也有提示把远程库同步到本地库就可以了。

解决办法:使用命令行:

git pull --rebase origin master

该命令的意思是把远程库中的更新合并到(pull=fetch+merge)本地库中,–-rebase的作用是取消掉本地库中刚刚的commit,并把他们接到更新后的版本库之中。出现如下图执行pull执行成功后,可以成功执行git push origin master操作。