Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.1, 2.0.2, and 2.0.3

stable chunks: do not generate .orig files when shelving changes (fixes #273)

Changeset 2d23a43b3135

Parent 52755740e8e3

by Steve Borho

Changes to one file · Browse files at 2d23a43b3135 Showing diff from parent 52755740e8e3 Diff from another changeset...

 
199
200
201
202
 
203
204
205
 
309
310
311
312
 
313
314
315
 
199
200
201
 
202
203
204
205
 
309
310
311
 
312
313
314
315
@@ -199,7 +199,7 @@
  return   repo.thgbackup(path)   if revertall: - commands.revert(repo.ui, repo, path) + commands.revert(repo.ui, repo, path, no_backup=True)   else:   wlock = repo.wlock()   try: @@ -309,7 +309,7 @@
  else:   repo.thgbackup(repo.wjoin(wfile))   wasadded = wfile in repo[None].added() - commands.revert(repo.ui, repo, repo.wjoin(wfile)) + commands.revert(repo.ui, repo, repo.wjoin(wfile), no_backup=True)   if wasadded:   os.unlink(repo.wjoin(wfile))   self.fileModified.emit()