Git的用法

主要命令行

git init
git add .
git commit -m ""
git remote add origin https://github.com/xxx.git

git pull --rebase origin master
git push -u origin master

参考:
1、https://www.jianshu.com/p/c70ca3a02087
2、https://www.cnblogs.com/qwangxiao/p/7365608.html

你可能感兴趣的:(Git的用法)