Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just need a plain list of conflicted files.

Is there anything simpler than:

git ls-files -u | cut -f 2 | sort -u

or

git ls-files -u | awk '{print $4}' | sort | uniq

?

I guess I could set up a handy alias for that, just was wondering how pros do it. I'd use it to write shell loops e.g. to auto-resolve conflict etc.. Maybe replace that loop by plugging into mergetool.cmd?

share|improve this question
yeah, you can do sort -u instead of sort | uniq :P – Unknown Jun 17 '10 at 21:16
cool, that's good to know, thanks -- might tag the Q with 'sort' or shell-scripting ;) – inger Jun 17 '10 at 21:21
I might be confused but why can't you create a Git alias (or did you refer to them when you mentioned "alias"?)? git.wiki.kernel.org/index.php/Aliases – Makis Aug 4 '11 at 7:24
@Makis, actually yes, that's what I did I think. – inger Aug 12 '11 at 15:04
+1 This is definitely going to favorites. – santiagobasulto Mar 16 '12 at 19:37

5 Answers

up vote 47 down vote accepted
git diff --name-only --diff-filter=U
share|improve this answer
looks good, seems to work - thanks! Do you know since when --diff-filter is available? – inger Jun 4 '12 at 23:28
@inger: --diff-filter has been available since v0.99. – Charles Bailey Jun 6 '12 at 21:37
Thanks - interesting how we missed this so far. This solution takes exactly the same number of chars as the one above: head to head:) – inger Jun 6 '12 at 21:47
I can not understand people accepting complicated answers over a simple one. Actually it is clearly stated at the documentation this command. Anyway thanx. Helped a lot – Cemo Sep 18 '12 at 21:03
Although it's not obviously simpler in terms of length,but does not depend on external commands so this wins imho:) – inger Oct 8 '12 at 22:29
show 1 more comment

Trying to answer my question:

No, there doesn't seem to be any simpler way than the one in the question, out of box.

After typing that in too many times, just pasted the shorter one into an executable file named 'git-conflicts', made accessible to git, now I can just: git conflicts to get the list I wanted.

Update: as Richard suggests, you can set up an git alias, as alternative to the executable

git config --global alias.conflicts '!git ls-files -u | cut -f 2 | sort -u'

An advantage of using the executable over the alias is that you can share that script with team members (in a bin dir part of the repo).

share|improve this answer
Man do I hate git some times... – Rafa Oct 19 '11 at 9:52
I felt the same at that point - thinking how the hell people don't need this, and seeing how trivial it was to workaround. However, I've been using git for 2 years now and honestly haven't run into that "limitation" once more. So maybe that's not that much of common usecase after all? – inger Oct 19 '11 at 14:35
4  
This is simple enough that you could set up an alias for it git config --global alias.conflicts "!git ls-files -u | cut -f 2 | sort -u" (the ! means run this shell command, rather than just a git command). – Richard Apr 9 '12 at 4:57
1  
Worth mentioning that you actually want 'single-quotes' instead of "double-quotes." Otherwise, the ! will be interpreted by your shell: git config --global alias.conflicts '!git ls-files -u | cut -f 2 | sort -u' – umop Jun 2 '12 at 2:12
good point, thanks! – inger Jun 3 '12 at 21:31
git status --short | grep "^UU "
share|improve this answer
1  
Note: You may need to search for ^UA and ^UD also, so the following pattern is more complete: "^U[UAD] " – mda Feb 11 '12 at 0:18

"git status" displays "both modified" next to files that have conflicts instead of "modified" or "new file", etc

share|improve this answer
1  
That's true. However this particular question was about a plain list of conflicted files.. this might be an XY problem (I can't remember why I actually needed that conflict list, but the fact that I haven't needed it since might suggest that I should have followed a different approach back then. Not sure now.. I also was writing scripts for autoresolving java-import conflicts which needed this list, ie. non-interactive use).. – inger Oct 25 '11 at 17:35
Oh, I hadn't understood that. I thought you wanted a "normal" list for "normal" use. Which is why I freaked out with your own code and your self-answer... then I realized the "both modified" thingy worked for me (and I assumed you just wanted the same as me, why shouldn't you? ;-P ) Thanks for the upvote though :) – Rafa Oct 26 '11 at 14:13

If you attempt to commit, and if there are conflicts, then git will give you the list of the currently unresolved conflicts... but not as a plain list. This is usually what you want when working interactively because the list gets shorter as you fix the conflicts.

share|improve this answer
1  
"interactively because the list gets shorter as you fix the conflicts." Interesting. I've always used mergetool for that purpose. – inger Oct 25 '11 at 17:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.