Marc Khouzam wrote:
The uniq program only works with sorted input.  The man page states
"uniq prints the unique lines in a sorted file".
...
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -321,7 +321,7 @@ __git_refs ()
                               if [[ "$ref" == "$cur"* ]]; then
                                       echo "$ref"
                               fi
-                       done | uniq -u
+                       done | sort | uniq -u

Is 'sort -u' not universally available and sufficient here? It is POSIX at least:
http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sort.html

Bye, Jojo

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to