git

Git 常用命令

拉取 and 提交

Posted by CC on November 6, 2020

拉取代码

1
git pull

提交代码

1
2
3
git add --all
git commit -m "remark text"
git push