存储库是否重新定位,采取措施不损坏存储库?

时间:2014-02-17 13:04:41

标签: git smartgit

我正在办公室和家里的GIT回购工作。我在办公室工作的最近一天,我忘了对repo进行更改,并在同一个文件中进行了更改,但是在我执行提交的主页中。当我从存储库中提取更改时,当然,我遇到了问题,但我决定了。现在我的存储库说<rebasing>并且我不知道什么因为拉动被禁用。这是我做的最新动作,我留下问题的大纲,有什么帮助吗?

Resolve
    $ git.exe checkout --ours -- src\Website\BackendBundle\Resources\views\Product\MetaDetailGroup\list.html.twig
    $ git.exe add --force -- src\Website\BackendBundle\Resources\views\Product\MetaDetailGroup\list.html.twig
Pull (Rebase): merge-recursive failed (return code 1)
    $ git.exe fetch --progress --prune origin
    remote: Counting objects: 650, done.
    remote: Total 504 (delta 253), reused 320 (delta 150)
    From 1000.servers.wuelto.com:development/kraken
       758cc34..ade8ca7  develop    -> origin/develop
    First, rewinding head to replay your work on top of it...
    $ git.exe checkout --quiet ade8ca75ff6041fbf242576f7f7266f6ef2fa650
    $ git.exe update-ref ORIG_HEAD 608f32ec641512846e76bb5724e3154bd38687d8
    $ git.exe merge-recursive 608f32ec641512846e76bb5724e3154bd38687d8^ -- ade8ca75ff6041fbf242576f7f7266f6ef2fa650 608f32ec641512846e76bb5724e3154bd38687d8
    Auto-merging src/Website/BackendBundle/Resources/views/Product/MetaDetailGroup/list.html.twig
    CONFLICT (content): Merge conflict in src/Website/BackendBundle/Resources/views/Product/MetaDetailGroup/list.html.twig

enter image description here

1 个答案:

答案 0 :(得分:1)

使用SmartGit时,请解决文件中的冲突(在您的情况下为list.html.twig):

  • 使用查询|冲突解算器时,SmartGit会询问您是否进行更改。

  • 手动解决冲突时(在SmartGit之外),修复文件内容后,请调用本地|解析

然后,要完成 rebase ,请使用提交分支|重新安装|继续

注意:如果出现任何问题,弃掉 rebase 并重新调用重新开始。