error when git-diff get pipe args

Subsystems: the rest

2 messages, 2 authors, 2016-06-15 · open the first message on its own page

error when git-diff get pipe args

From: chunguang qu <hidden>
Date: 2016-06-15 22:59:10

$ cat a
111
fdsf
333
$ cat b
111
222
333
$ git diff a b                             # OK
diff --git a/a b/b
index 768560b..641d574 100644
--- a/a
+++ b/b
@@ -1,3 +1,3 @@
 111
-fdsf
+222
 333
$ git diff <(cat a) <(cat b)          # ERROR: no result print out
diff --git a/dev/fd/63 b/dev/fd/62
index 311e262..554e9f4 120000
--- a/dev/fd/63
+++ b/dev/fd/62
@@ -1 +1 @@
-pipe:[729963]
\ No newline at end of file
+pipe:[729965]
\ No newline at end of file

# compare with diff
$ diff -u a b                            # OK
--- a 2013-11-05 00:18:17.394805923 +0800
+++ b 2013-11-05 00:18:25.546805865 +0800
@@ -1,3 +1,3 @@
 111
-fdsf
+222
 333
$ diff -u <(cat a) <(cat b)         # OK: get result in same case
--- /dev/fd/63 2013-11-05 01:02:59.706787117 +0800
+++ /dev/fd/62 2013-11-05 01:02:59.706787117 +0800
@@ -1,3 +1,3 @@
 111
-fdsf
+222
 333

Re: error when git-diff get pipe args

From: brian m. carlson <hidden>
Date: 2016-06-15 22:59:10

On Tue, Nov 05, 2013 at 08:03:28AM +0800, chunguang qu wrote:
quoted hunk
$ cat a
111
fdsf
333
$ cat b
111
222
333
$ git diff a b                             # OK
diff --git a/a b/b
index 768560b..641d574 100644
--- a/a
+++ b/b
@@ -1,3 +1,3 @@
 111
-fdsf
+222
 333
$ git diff <(cat a) <(cat b)          # ERROR: no result print out
diff --git a/dev/fd/63 b/dev/fd/62
index 311e262..554e9f4 120000
--- a/dev/fd/63
+++ b/dev/fd/62
@@ -1 +1 @@
-pipe:[729963]
\ No newline at end of file
+pipe:[729965]
\ No newline at end of file
This is because git diff compares symlinks instead of dereferencing
them, as diff does.  On Linux, /dev/fd is a symlink to /proc/self/fd,
and the items in that directory are all symlinks.

git diff is not generally intended to diff arbitrary files from
arbitrary locations.  For that, you want plain old diff, which works as
you expect.

-- 
brian m. carlson / brian with sandals: Houston, Texas, US
+1 832 623 2791 | http://www.crustytoothpaste.net/~bmc | My opinion only
OpenPGP: RSA v4 4096b: 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help