Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 167 Bytes

git命令详解.md

File metadata and controls

11 lines (8 loc) · 167 Bytes

git 命令详解

$ git init .
$ git remote add origin https://github.com/user/repo.git

$ git add -A .
$ git commit -m "init"
$ git push origin master