美文网首页git及github学习
将本地文件夹上传到Github远程存储库

将本地文件夹上传到Github远程存储库

作者: 伪学识青年 | 来源:发表于2019-05-25 23:51 被阅读0次

将本地文件夹push到Github存储库中:

打开Git Bash,将当前目录修改为需要上传的文件夹

初始化本地Git文件夹:

git init

执行:

git add .

首次提交:

git commit -m "First commit"

将Github存储库的完整网址复制:

执行:

git remote add origin 存储库地址

这里若报错:

fatal: remote origin already exists.

则使用:

git remote rm origin

再使用:

git remote add origin 存储库地址

验证我们添加的存储库:

git remote -v

最后使用Push上传即可:

git push origin master

可能会要求输入rsa密码,输入即可

得到输出为:

Enter passphrase for key '*******':

Enumerating objects: 76, done.

Counting objects: 100% (76/76), done.

Delta compression using up to 4 threads

Compressing objects: 100% (63/63), done.

Writing objects: 100% (76/76), 23.29 KiB | 390.00 KiB/s, done.

Total 76 (delta 26), reused 0 (delta 0)

remote: Resolving deltas: 100% (26/26), done.

To github.com:FightingAlwaysOnline/NDATAFLUSH.git

* [new branch]      master -> master

成功。

查看Github上对应的存储库,发现已经成功上传!

相关文章

网友评论

    本文标题:将本地文件夹上传到Github远程存储库

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