2016-03-25 6 views
2

git statusを実行すると、git rebase --continueを実行するように指示されている次のメッセージが表示されます。GITどうすればよいですか?すべての競合が修正されました: "git rebase --continue"を実行してください

私は昨日のマージコンフリクトを解決し、それをマージして&をステージングサイトにプッシュしました。

更新 私はgit rebase --skipを実行しましたが、より多くの問題が発生しました。私はgit rebase --abortを実行し、その後git pull最後に

$ (716-RWD) git status 
On branch 716-RWD 
Your branch is up-to-date with 'origin/716-RWD'. 
You are currently rebasing branch '716-RWD' on '7e68797'. 
    (all conflicts fixed: run "git rebase --continue") 

nothing to commit, working directory clean 
holy in ~/ubuntu_1404/httpdocs/magento 
$ (716-RWD) git rebase --skip 
Applying: themed product listings fro mobile 
Using index info to reconstruct a base tree... 
A skin/frontend/bootstrapped/default/css/rwd.css 
M skin/frontend/bootstrapped/default/js/boutique.js 
A skin/frontend/bootstrapped/default/sass/_catalog-categories.scss 
Falling back to patching base and 3-way merge... 
CONFLICT (modify/delete): skin/frontend/bootstrapped/default/sass/_catalog-categories.scss deleted in a2de9914584b4eae3b335700e9ef6486c858ab43 and modified in themed product listings fro mobile. Version themed product listings fro mobile of skin/frontend/bootstrapped/default/sass/_catalog-categories.scss left in tree. 
CONFLICT (modify/delete): skin/frontend/bootstrapped/default/css/rwd.css deleted in a2de9914584b4eae3b335700e9ef6486c858ab43 and modified in themed product listings fro mobile. Version themed product listings fro mobile of skin/frontend/bootstrapped/default/css/rwd.css left in tree. 
Failed to merge in the changes. 
Patch failed at 0006 themed product listings fro mobile 
The copy of the patch that failed is found in: 
    /Users/holy/ubuntu_1404/httpdocs/magento/.git/rebase-apply/patch 

When you have resolved this problem, run "git rebase --continue". 
If you prefer to skip this patch, run "git rebase --skip" instead. 
To check out the original branch and stop rebasing, run "git rebase --abort". 

holy in ~/ubuntu_1404/httpdocs/magento 
$ (716-RWD) git status 
On branch 716-RWD 
Your branch is up-to-date with 'origin/716-RWD'. 
You are currently rebasing branch '716-RWD' on '7e68797'. 
    (fix conflicts and then run "git rebase --continue") 
    (use "git rebase --skip" to skip this patch) 
    (use "git rebase --abort" to check out the original branch) 

Changes to be committed: 
    (use "git reset HEAD <file>..." to unstage) 

    modified: app/design/frontend/bootstrapped/default/template/catalog/navigation/left.custom.phtml 
    new file: media/catalog/category/Booster.png 

Unmerged paths: 
    (use "git reset HEAD <file>..." to unstage) 
    (use "git add/rm <file>..." as appropriate to mark resolution) 

    deleted by us: skin/frontend/bootstrapped/default/css/rwd.css 
    deleted by us: skin/frontend/bootstrapped/default/sass/_catalog-categories.scss 
+0

あなたはまた、Gitは – Martin

+0

@Martinを--abortリベース行うことができ、私は 'gitのは--skip'リベースんでしたし、すべてで、今何をすべきかわからない、より多くの変更を行うように見えましたか? – Holly

+0

@Holy最初に行うことは、リベースが何であるかを読み、テストリポジトリで少し練習することです。あなたは未完成のリベースの途中です。中止した場合はコミットを元に戻すことができますが、幸いにも 'git reflog'はコミットをすべて保持して何も失うことはありません。 – sashoalm

答えて

5

。すべてが正常に戻り、私がその支店で行ったすべての変更がそこにあるようです。

$ (716-RWD) git rebase --abort 
ross in ~/ubuntu_1404/httpdocs/magento 
$ (716-RWD) git status 
On branch 716-RWD 
Your branch is behind 'origin/716-RWD' by 7 commits, and can be fast-forwarded. 
    (use "git pull" to update your local branch) 
nothing to commit, working directory clean 
ross in ~/ubuntu_1404/httpdocs/magento 
$ (716-RWD) git pull 
関連する問題