D6709: config: add --registered flag to show all known configs

2019-08-08 Thread navaneeth.suresh (Navaneeth Suresh)
navaneeth.suresh updated this revision to Diff 16165. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6709?vs=16164&id=16165 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6709/new/ REVISION DETAIL https://phab.mercurial-scm.org/D6709 AFFEC

D6709: config: add --registered flag to show all known configs

2019-08-08 Thread navaneeth.suresh (Navaneeth Suresh)
navaneeth.suresh added a comment. In D6709#98493 , @marmoute wrote: > In D6709#98479 , @navaneeth.suresh wrote: > >> @pulkit I couldn't figure out why the devel-warnings are coming. It's being sho

D6709: config: add --registered flag to show all known configs

2019-08-08 Thread navaneeth.suresh (Navaneeth Suresh)
navaneeth.suresh updated this revision to Diff 16164. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6709?vs=16154&id=16164 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6709/new/ REVISION DETAIL https://phab.mercurial-scm.org/D6709 AFFEC

[Bug 6184] New: branchmap doesn't allow renaming branch names that contain spaces

2019-08-08 Thread mercurial-bugs
https://bz.mercurial-scm.org/show_bug.cgi?id=6184 Bug ID: 6184 Summary: branchmap doesn't allow renaming branch names that contain spaces Product: Mercurial Version: unspecified Hardware: All OS: All

D6710: branchmap: explicitly warm+write all subsets of the branchmap caches

2019-08-08 Thread spectral (Kyle Lippincott)
Closed by commit rHGcdf0e9523de1: branchmap: explicitly warm+write all subsets of the branchmap caches (authored by spectral). This revision was automatically updated to reflect the committed changes. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6710?vs=

D6710: branchmap: explicitly warm+write all subsets of the branchmap caches

2019-08-08 Thread pulkit (Pulkit Goyal)
pulkit added a comment. Thanks @marmoute for the review. REPOSITORY rHG Mercurial CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6710/new/ REVISION DETAIL https://phab.mercurial-scm.org/D6710 To: spectral, #hg-reviewers, marmoute, pulkit Cc: marmoute, mercurial-devel __

D6695: transplant: added support for --abort flag

2019-08-08 Thread pulkit (Pulkit Goyal)
pulkit added a comment. Sorry for missing this earlier, but what happens when we are transplanting mutliple revisions and we have conflicts in a revision after the first one? REPOSITORY rHG Mercurial CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6695/new/ REVISION DETAIL h

D6695: transplant: added support for --abort flag

2019-08-08 Thread pulkit (Pulkit Goyal)
pulkit added inline comments. INLINE COMMENTS > pulkit wrote in test-transplant.t:466 > A better candidate here will be to show `hg status -v` as that will show > whether there is an unfinished transplant or not. This one is not done. REPOSITORY rHG Mercurial CHANGES SINCE LAST ACTION htt

D6695: transplant: added support for --abort flag

2019-08-08 Thread taapas1128 (Taapas Agrawal)
taapas1128 updated this revision to Diff 16162. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6695?vs=16159&id=16162 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6695/new/ REVISION DETAIL https://phab.mercurial-scm.org/D6695 AFFECTED FI

D6689: continue: added support for transplant

2019-08-08 Thread taapas1128 (Taapas Agrawal)
taapas1128 marked an inline comment as done. taapas1128 updated this revision to Diff 16161. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6689?vs=16158&id=16161 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6689/new/ REVISION DETAIL http

D6711: branchheads: store wdir-dependent caches in wcache (issue6181)

2019-08-08 Thread marmoute (Pierre-Yves David)
marmoute added a comment. In D6711#98318 , @spectral wrote: > In D6711#98248 , @marmoute wrote: > >> The change looks good to me, However we probably want to introduce a new filter level 'wdir-ind

D6710: branchmap: explicitly warm+write all subsets of the branchmap caches

2019-08-08 Thread marmoute (Pierre-Yves David)
marmoute added a comment. marmoute accepted this revision. We could warm them in increasing order to improve efficiency. However this is for the full cache warming so this looks good enough. (consider doing them in order in a follow up) Note: this change seems independant from the previo

D6719: branchmap: refresh all "heads" of the branchmap subsets

2019-08-08 Thread marmoute (Pierre-Yves David)
This revision now requires changes to proceed. marmoute added a comment. marmoute requested changes to this revision. It seems like we are not warming enought cache with the new scheme. INLINE COMMENTS > localrepo.py:2204 > +filt = 'visible' > +self.filtere

D6689: continue: added support for transplant

2019-08-08 Thread pulkit (Pulkit Goyal)
pulkit added inline comments. INLINE COMMENTS > transplant.py:737 > > +def continuetransplant(ui, repo): > +"""logic to resume an interrupted transplant using let's name this function `continue` only as it's in transplant.py and a continue implies that we are continuing transplant. REPOS

D6709: config: add --registered flag to show all known configs

2019-08-08 Thread marmoute (Pierre-Yves David)
marmoute added a comment. In D6709#98479 , @navaneeth.suresh wrote: > @pulkit I couldn't figure out why the devel-warnings are coming. It's being shown for the following > items in `configitems.py`. IIUC, it should be visible when we are try

D6695: transplant: added support for --abort flag

2019-08-08 Thread pulkit (Pulkit Goyal)
pulkit added inline comments. INLINE COMMENTS > transplant.py:417 > +"""logic to abort an interrupted transplant""" > +if repo.vfs.exists('transplant/journal'): > +startctx = repo['.'] `canresume` above can be used for doing this check. REPOSITORY rHG Mercurial CH

D6659: graft: split graft code into seperate functions

2019-08-08 Thread taapas1128 (Taapas Agrawal)
taapas1128 added inline comments. INLINE COMMENTS > pulkit wrote in cmdutil.py:3495 > the function name is not correct with respect to what it does, maybe > something like `getopts` or something. Also, we no longer update the `opts`, > so we can drop that as argument and also need to update the

D6665: continue: added support for graft

2019-08-08 Thread taapas1128 (Taapas Agrawal)
taapas1128 updated this revision to Diff 16156. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6665?vs=16121&id=16156 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6665/new/ REVISION DETAIL https://phab.mercurial-scm.org/D6665 AFFECTED FI

D6659: graft: split graft code into seperate functions

2019-08-08 Thread taapas1128 (Taapas Agrawal)
taapas1128 marked an inline comment as done. taapas1128 updated this revision to Diff 16155. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6659?vs=16120&id=16155 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6659/new/ REVISION DETAIL http

D6696: abort: added support for transplant

2019-08-08 Thread taapas1128 (Taapas Agrawal)
taapas1128 marked an inline comment as done. taapas1128 updated this revision to Diff 16160. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6696?vs=16070&id=16160 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6696/new/ REVISION DETAIL http

D6695: transplant: added support for --abort flag

2019-08-08 Thread taapas1128 (Taapas Agrawal)
taapas1128 marked 4 inline comments as done. taapas1128 updated this revision to Diff 16159. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6695?vs=16069&id=16159 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6695/new/ REVISION DETAIL http

D6678: continue: added support for histedit

2019-08-08 Thread taapas1128 (Taapas Agrawal)
taapas1128 marked an inline comment as done. taapas1128 updated this revision to Diff 16157. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6678?vs=16019&id=16157 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6678/new/ REVISION DETAIL http

D6689: continue: added support for transplant

2019-08-08 Thread taapas1128 (Taapas Agrawal)
taapas1128 updated this revision to Diff 16158. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6689?vs=16043&id=16158 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6689/new/ REVISION DETAIL https://phab.mercurial-scm.org/D6689 AFFECTED FI

D6709: config: add --registered flag to show all known configs

2019-08-08 Thread navaneeth.suresh (Navaneeth Suresh)
navaneeth.suresh added a comment. @pulkit I couldn't figure out why the devel-warnings are coming. It's being shown for the following items in `configitems.py`. IIUC, it should be visible when we are trying to read a config item which is not in the registered items. But, we are iteratin

D6709: config: add --registered flag to show all known configs

2019-08-08 Thread navaneeth.suresh (Navaneeth Suresh)
navaneeth.suresh updated this revision to Diff 16154. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6709?vs=16153&id=16154 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6709/new/ REVISION DETAIL https://phab.mercurial-scm.org/D6709 AFFEC

D6709: config: add --registered flag to show all known configs

2019-08-08 Thread navaneeth.suresh (Navaneeth Suresh)
navaneeth.suresh updated this revision to Diff 16153. REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6709?vs=16119&id=16153 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6709/new/ REVISION DETAIL https://phab.mercurial-scm.org/D6709 AFFEC

mercurial@42709: 3 new changesets (2 on stable)

2019-08-08 Thread Mercurial Commits
3 new changesets (2 on stable) in mercurial: https://www.mercurial-scm.org/repo/hg/rev/3cffc7bbec26 changeset: 42707:3cffc7bbec26 bookmark:@ user:Pierre-Yves David date:Tue Aug 06 03:17:40 2019 +0200 summary: copies: extract an explicit `computechangesetcopie` method fro

mercurial@42706: 5 new changesets

2019-08-08 Thread Mercurial Commits
5 new changesets in mercurial: https://www.mercurial-scm.org/repo/hg/rev/4814d993fe21 changeset: 42702:4814d993fe21 user:Navaneeth Suresh date:Wed Jul 24 18:15:27 2019 +0530 summary: unshelve: handle stripping changesets on interactive mode https://www.mercurial-scm.org/rep

Re: [PATCH STABLE] demandimport: explicitly declare `_session` at the module level

2019-08-08 Thread Yuya Nishihara
On Thu, 08 Aug 2019 11:06:57 +0200, Pierre-Yves David wrote: > # HG changeset patch > # User Pierre-Yves David > # Date 1565255173 -7200 > # Thu Aug 08 11:06:13 2019 +0200 > # Branch stable > # Node ID c88fca729396738dafa233416d093e711bfb3532 > # Parent cba59b338976af0e4c92cf16b8f95331e6ac4f

Re: [PATCH STABLE] tests: give more room for slowness in test-run-tests.t

2019-08-08 Thread Yuya Nishihara
On Thu, 08 Aug 2019 10:57:55 +0200, Pierre-Yves David wrote: > # HG changeset patch > # User Pierre-Yves David > # Date 1565254506 -7200 > # Thu Aug 08 10:55:06 2019 +0200 > # Branch stable > # Node ID f4f244549ffa6f9f6c86849b756d5b4028bf6f24 > # Parent cba59b338976af0e4c92cf16b8f95331e6ac4f

[PATCH STABLE] demandimport: explicitly declare `_session` at the module level

2019-08-08 Thread Pierre-Yves David
# HG changeset patch # User Pierre-Yves David # Date 1565255173 -7200 # Thu Aug 08 11:06:13 2019 +0200 # Branch stable # Node ID c88fca729396738dafa233416d093e711bfb3532 # Parent cba59b338976af0e4c92cf16b8f95331e6ac4f30 # EXP-Topic pyflakes-tracing # Available At https://bitbucket.org/octobu

[PATCH STABLE] tests: give more room for slowness in test-run-tests.t

2019-08-08 Thread Pierre-Yves David
# HG changeset patch # User Pierre-Yves David # Date 1565254506 -7200 # Thu Aug 08 10:55:06 2019 +0200 # Branch stable # Node ID f4f244549ffa6f9f6c86849b756d5b4028bf6f24 # Parent cba59b338976af0e4c92cf16b8f95331e6ac4f30 # EXP-Topic test-runtests # Available At https://bitbucket.org/octobus/m