赞
踩
项目初始有2个commit,git rebase -i 合并提交记录只能看到一个最新的,
需要git rebase -i --root才能看到第一个提交
git rebase -i -root以后,编辑提交信息,然后就可以了。
之前本地调试的时候经过多次实验性操作,导致git rebase -i -root以后,
查看git stash 是 Not currently on any branch
*(no branch)
master
这样,解决方法是
git branch temp 新建个分支
git checkout master
git branch -D temp 强制删除了temp分支,
然后再git rebase -i -root操作一次就可以了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。