创建空分支
1 2 3 4 5 6
| checkout --orphan empty_branch git rm -rf . echo "# new project" > README.md git add README.md git commit -m "init files" git push origin empty_branch
|
删除本地分支和远程分支
1 2
| git branch -d branch_name // 可选择 -D ,忽略错误 git push origin -d branch_name
|
把当前分支重命名为master
把代码推送到远程仓库
1
| git push -f origin master
|
分支代码合并到 master 主分支
1 2 3 4 5 6 7 8 9 10
| git checkout branch_name
git pull
git checkout master
git merge branch_name
git push
|
查询配置信息 & 初始化
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| git config --list
git config --local --list
git config --global --list
git config --system --list
git config --global user.name "your name"
git config --global user.email "youremail@github.com"
git config --global merge.tool vimdiff
git config --global color.ui auto
git config --global core.editor vi
|
如果您喜欢此博客或发现它对您有用,则欢迎对此发表评论。 也欢迎您共享此博客,以便更多人可以参与。 如果博客中使用的图像侵犯了您的版权,请与作者联系以将其删除。 谢谢 !