Git常用方法总结

- 起步
Git config --global user.name “”
Git config --global user.email “”

- 提交文件  
Git add .
Git commit -m “更改”
Git push origin master

- Clone仓库
码云:git clone git@oschina:用户名/~.git
github:git clone git@github:用户名/~.git
(ps:这里的oschina以及github为我自己设置的host名,为了便于管理多个git账户的)
具体设置方法参考:https://www.cnblogs.com/popfisher/p/5731232.html

- 同步到本地
Git pull origin master

你可能感兴趣的:(git,总结,git,总结)