记一次成功git
1.上传到已经在的仓库
如果存在需要先合并比较保险
then
cd 当前目录
git add . 当前所有
git status 查看暂存status
git commit -m "this is commit message" 提交+desc message
2.上传一个未处理过的一批文件
git init
git add README.md
git commit -m “first commit”
git remote add origin https://github.com/hkzck/仓库name.git
git push -u origin master
老是忘记,还不如放在CSDN上,忘记时候看看,最后记下来