projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c2c10b
)
merge-one-file: make sure we do not mismerge symbolic links.
author
Junio C Hamano
<junkio@cox.net>
Fri, 2 Dec 2005 08:54:50 +0000
(
00:54
-0800)
committer
Junio C Hamano
<junkio@cox.net>
Fri, 2 Dec 2005 09:08:14 +0000
(
01:08
-0800)
We ran "merge" command on O->A, O->B, A!=B case without
verifying the path involved is not a symlink.
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-merge-one-file.sh
patch
|
blob
|
history
diff --git
a/git-merge-one-file.sh
b/git-merge-one-file.sh
index
906098d
..
eafef77
100755
(executable)
--- a/
git-merge-one-file.sh
+++ b/
git-merge-one-file.sh
@@
-58,6
+58,14
@@
case "${1:-.}${2:-.}${3:-.}" in
# Modified in both, but differently.
#
"$1$2$3" | ".$2$3")
+
+ case ",$6,$7," in
+ *,120000,*)
+ echo "ERROR: $4: Not merging symbolic link changes."
+ exit 1
+ ;;
+ esac
+
src2=`git-unpack-file $3`
case "$1" in
'')