GitKraken:外部应用程序正在此存储库上执行变基
Hi I just changed my email on all the commits in my project. After I ran this script from the terminal all worked good.
Now I have an error in the GitKraken dashboard with the following error:
How do I remove it?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已修复:将以下内容放入 CLI 中
git rebase --abort
基本上,自从我运行脚本以来,上面的内容就陷入了变基过程中,直到我中止它。
确保在变基然后退出时不要创建新分支,否则会重复 git 提交。
Fixed: put the following in the CLI
git rebase --abort
Basically since I ran the script the above is stuck in a rebase process until I abort it.
Make sure to not create a new branch when rebasing and then exiting otherwise it will duplicate the git commits.