How do I resolve a conflict after git pull?

前端 未结 5 1841
走了就别回头了
走了就别回头了 2020-12-05 06:22

I have to solve some conflict after a git pull.

$ git pull
CONFLICT (rename/add): Renamed vignette_generator_mashed.h->vision_problem_8.h in          


        
相关标签:
5条回答
  • 2020-12-05 06:51

    If you run your merge from a subdirectory of your project, git will run the merge for your whole project. However, mergetool can only see (and merge) files in or below the working directory. So, if this scenario occurs, make sure you are trying to run your conflict resolution from the top-level directory in your project.

    0 讨论(0)
  • 2020-12-05 06:53

    You don't need mergetool for this. It can be resolved pretty easily manually.

    Your conflict is that your local commits added a file, vision_problem_8.h, that a remote commit also created, by a rename from vignette_generator_mashed.h. If you run ls -l vision_problem_8.h* you will probably see multiple versions of this file that git has preserved for you. One of them will be yours, another of them will be the remote version. You can use an editor or whatever tools you like to resolve the conflicting contents. When you're done, git add the affected files and commit to complete the merge.

    If you just want to use the remote commit's version, then you can just move the copy that you didn't write into place and git add it.


    Regarding the merge tools, have a look at git help mergetool. Basically, it's going to try running each of the included possibilities until it finds one, or use one you have explicitly configured.

    0 讨论(0)
  • 2020-12-05 06:55

    I think you just forgot "-t" switch at your command line. According git help page it stands for "-t , --tool=" so it makes what you intended to.

    Try:

    git mergetool -t gvimdiff
    

    Of course you may use your prefered merge tool instead of mine gvimdiff, meld is great too...

    0 讨论(0)
  • 2020-12-05 06:56

    What if I simply want the version from git pull to overwrite everything? If you want just that you should use:

     git fetch
     git reset --hard origin/your-branch-name
    
    0 讨论(0)
  • 2020-12-05 06:58

    If you have a proper branching strategy - aka features are merged into develop , just before merge rebased etc. , most often when you want to run a git pull on a branch you basically want to get all the new stuff from the git server, and late on apply your own stuff , which is git lingua franca is something like this:

    # put all my changes on the stash 
    git stash 
    
    # fully reset the current branch to the state it is on the server
    git clean -d -x -f ; git reset HEAD --hard ; git pull --force
    
    # apply your own changes 
    git stash pop
    

    You could also instead of stash put you current state into a tmp branch ... but eventually if there are conflicts you would have to manually resolve them ...

    0 讨论(0)
提交回复
热议问题