- 克隆代码
git clone Url(git库的url) git clone http://github.com/XXXXXXXXXX
- 提交代码
添加到暂存区
git add .
或者文件名
git add FileName
提交代码
git commit -m "注释内容"
推送代码
git push orgin master
......
git clone Url(git库的url) git clone http://github.com/XXXXXXXXXX
添加到暂存区
git add .
或者文件名
git add FileName
提交代码
git commit -m "注释内容"
推送代码
git push orgin master
......