github是个神奇的地方,好多优秀很赞的开源项目好多大神购贡献了自己的神作,我们只会下载过来用还不够,有一天我们也要当大神,所以我们当然也要传项目上去;
先记录一下一些命令:
git clone 仓库地址
git init
touch .gitignore
vim .gitignore
git add .
git commit -a -m "描述"
git remote add origin 仓库地址
git push origin master
touch readme.md
vim readme.md
git add readme.md
git commit -a -m "add the readme.md"
git push origin master
-----------------------------------------分割线--------------------------------------------
时间: 2024-10-17 18:28:51