-
Notifications
You must be signed in to change notification settings - Fork 510
嵌入式笔记:git操作
夏晓文 edited this page Apr 6, 2018
·
1 revision
git操作笔记
git add .
git rm .
git commit -m "first commit"
git push
git branch
git branch -a
git checkout -b dev
git pull origin gh-pages:gh-pages
需要本地没有gh-pages分支,否则会提示已拒绝
git branch --set-upstream-to=gh-pages
git push origin gh-pages