赞
踩
最近github改版了,给出了三种上传文件的方式
这里我们以第二种方式为例子,进行演示
1.安装git软件
https://git-scm.com/downloads
2.在你准备上传文件的文件夹内,打开git bash here
3.进行如下操作
echo "# 123" >> README.md
git init
git add README.md#注意,此处的文件就是你要上传的文件的名字,如果你要上传该文件夹下所有的文件,可以这样
git add .
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/Lost-real/123.git
git push -u origin main
4.然后就完成了所有的上传
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。