原文链接:这里
1.在github中新建一个仓库
点击New ,新建要给仓库
填写合适信息,点击创建。
创建完毕之后会提示你如何上传。
下面的指令从git init开始 执行一遍即可。
1 2 3 4 5 6 7 8 |
echo "# demo" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/xxxxx/xxxxx.git
git push -u origin master
|
1 |
2.创建新分支并把代码上传到新分支
切换到当前代码目录
1 2 3 4 5 6 |
git branch haha
git checkout haha
git add .
git commit - m "first"
git push origin haha
git push
|