summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0d214b6)
raw | patch | inline | side by side (parent: 0d214b6)
author | Fredrik Kuivinen <freku045@student.liu.se> | |
Tue, 13 Sep 2005 21:40:47 +0000 (23:40 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 13 Sep 2005 22:45:25 +0000 (15:45 -0700) |
Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-merge-recursive.py | patch | blob | history |
diff --git a/git-merge-recursive.py b/git-merge-recursive.py
index eeb3d24da8224a2275513918480c0b7866dfbe01..ea7f994a4f3a94e0801e03ce9cf77027d348067b 100755 (executable)
--- a/git-merge-recursive.py
+++ b/git-merge-recursive.py
if callDepth == 0:
if len(ca) > 1:
runProgram(['git-read-tree', h1.tree()])
- runProgram(['git-update-cache', '-q', '--refresh'])
+ runProgram(['git-update-index', '-q', '--refresh'])
# Use the original index if we only have one common ancestor
cleanCache = False
assert(False)
if updateWd and updateCache:
- runProgram(['git-update-cache', '--add', '--', path])
+ runProgram(['git-update-index', '--add', '--', path])
elif updateCache:
- runProgram(['git-update-cache', '--add', '--cacheinfo',
+ runProgram(['git-update-index', '--add', '--cacheinfo',
'0%o' % mode, sha, path])
def removeFile(clean, path):
if cleanCache or (not cleanCache and clean):
- runProgram(['git-update-cache', '--force-remove', '--', path])
+ runProgram(['git-update-index', '--force-remove', '--', path])
if not cleanCache and clean:
try: