|
1
2
3
4
5
6
|
1.git init;2.git add .3.git commit -m "初始化"4.git remote add origin https://github.com/githubusername/demo.git5.git pull --rebase origin master6.git push -u origin master |
|
1
2
3
4
5
6
|
1.git init;2.git add .3.git commit -m "初始化"4.git remote add origin https://github.com/githubusername/demo.git5.git pull --rebase origin master6.git push -u origin master |
原文:https://www.cnblogs.com/Rousseau/p/13992824.html