这里采用简单的描述,提供两种方式:
一、连接本地文件夹和远程仓库
1.使用pull——拉取github项目文件
(1)进入到自己要上传的文件夹内部,然后git bash here
(2)输入命令 git init
初始化,这个地方要注意修改本地git初始化master
改为main
(3)输入命令git pull
将远程(空)仓库拉取到本地
后面写你的项目仓库地址
git pull https://github.com/ranxi2001/NLP-learn.git
2.使用clone——生成github项目文件夹
(1)任意文件夹内部,然后git bash here
(2)然后克隆项目
pull https://github.com/ranxi2001/NLP-learn.git
(3)将要上传的文件复制到刚刚克隆的文件夹
cd NLP-learn
(4)cd到克隆的文件夹内部
二、上传文件
经过上面的操作,我们应该已经进入了git项目内部,此时git后面有(main)
标志
然后就可以三步大法直接推送了:
git add .
git commit -m 'init'
git push
我的个人博客:https://blog.onrlfy.top
标签:文件夹,pull,git,仓库,github,Git,本地 From: https://www.cnblogs.com/ranxi169/p/16717225.html