1 新仓库上传文件
1 | 1. git init //初始化仓库 |
2 更新仓库文件
clone后,在clone的文件夹下1
2
3git add .
git commit -m "message"
git push
3 删除仓库文件
进入到仓库文件夹下1
2
3git rm -rf *
git commit -m 'clean all file'
git push
I have a dream...
1 | 1. git init //初始化仓库 |
clone后,在clone的文件夹下1
2
3git add .
git commit -m "message"
git push
进入到仓库文件夹下1
2
3git rm -rf *
git commit -m 'clean all file'
git push