Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9237639
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T07:34:44+00:00 2026-06-18T07:34:44+00:00

In Bazaar if you have a conflict in foo.html it will make an additional

  • 0

In Bazaar if you have a conflict in foo.html it will make an additional 3 files

foo.html.BASE
foo.html.OTHER
foo.html.THIS

Then you can

diff -Naur foo.html.BASE foo.html.OTHER

Comparing the common basis with the other set of changes is really helpful because it tells you what, exactly, they changed, which helps answer why they did it. For example, if all they changed was white space, you can confidently use your own change.

How do I accomplish this in git?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T07:34:45+00:00Added an answer on June 18, 2026 at 7:34 am

    git doesn’t store the actual full-copy versions of the three files in your working directory. Instead, it stores a single file that has conflict markers placed in it. However, you can still get at those versions using the :<stage>:<filename> syntax (to git tools – the files don’t actually exist, so, e.g. normal diff won’t see them). So, for example, you can run git diff :1:foo.html :2:foo.html to see the differences between BASE and THIS. Stage 3 would be your OTHER version. You could also use git mergetool foo.html or git difftool foo.html. If you really need to use a non-git tool on them, you can do this:

    git show :1:foo.html > foo.html.BASE
    git show :2:foo.html > foo.html.THIS
    git show :3:foo.html > foo.html.OTHER
    diff ......
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a bunch of unknown files in my Bazaar working tree that I
I have a project hierarchy like this, with a bazaar repository that has been
Is there a way to make bazaar to ignore all executable files under Linux?
I tired my hands on bazaar(launchpad), for the reason that i can host my
I have come up against this problem a few times at inopportune moments: Trying
I am trying to have Launchpad mirror a Bazaar branch on SourceForge but failing.
Git, Mercurial, and Bazaar all seem to have similar formats for their ignore file
A question I could not answer from the bazaar documentation. If I have a
I have a list which is in this certain format. [u' ', u'Address :',u'Sadar
I have a string: foo (2 spaces) bar (3 spaces) baaar (6 spaces) fooo

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.