git创建空白新分支
转载自简书本文链接地址: Git创建空白新分支*
使用方法:
向分支提交一个初始的空commit,保证完全复位。
创建并切换新分支
1
2
3
4git branch <new_branch>
git checkout <new_branch>
git rm --cached -r .
git clean -f -d创建空的commit
1
git commit --allow-empty -m "[empty] initial commit"
推送新分支
1
git push origin <new_branch>