如何在终端中使用指令检出项目,修改并提交。
- 首先使用
git clone url
将github上的项目克隆到本地 - 增加文件使用
git add file
- 查看当前工程状态使用
git status
- 增删改后要提交使用
git commit file -m "desc"
提交改动 - 最后使用
git push
将改动推到github远端地址上
首次提交需要关联远程仓库:
// 关联
git remote add origin https://github.com/buvtopcc/test.git
// 上传
git push -u origin master
之后的修改按照1~5步即可提交。