##// END OF EJS Templates
largefiles: file storage should be relative to repo, not relative to cwd...
Mads Kiilerich -
r15553:e89385e4 stable
parent child Browse files
Show More
@@ -156,7 +156,7 b' def openlfdirstate(ui, repo):'
156 156 hash = readstandin(repo, lfile)
157 157 lfdirstate.normallookup(lfile)
158 158 try:
159 if hash == hashfile(lfile):
159 if hash == hashfile(repo.wjoin(lfile)):
160 160 lfdirstate.normal(lfile)
161 161 except OSError, err:
162 162 if err.errno != errno.ENOENT:
@@ -257,6 +257,12 b' Clone a largefiles repo.'
257 257 5 files updated, 0 files merged, 0 files removed, 0 files unresolved
258 258 getting changed largefiles
259 259 3 largefiles updated, 0 removed
260 $ hg debugstate --nodates
261 n 644 41 .hglf/sub/large4
262 n 0 -1 .hglf/sub2/large6
263 n 0 -1 .hglf/sub2/large7
264 n 644 9 normal3
265 n 644 9 sub/normal4
260 266 $ cd ../b
261 267 $ hg log --template '{rev}:{node|short} {desc|firstline}\n'
262 268 7:daea875e9014 add/edit more largefiles
General Comments 0
You need to be logged in to leave comments. Login now