鼎鼎知识库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

git基本命令.md 208B

12345678910111213
  1. 基本命令
  2. ```
  3. 拷贝项目:git clone ...
  4. 拉取项目:git pull origin master
  5. 创建文件:touch somedemo.md
  6. ```
  7. 更改推送
  8. ```
  9. git add --all
  10. git commit -m "some updates"
  11. git push origin master
  12. ```