Mercurial > hg
annotate hgext/progress.py @ 25805:584044e5ad57
convert: use 'default' for specifying branch name in branchmap (issue4753)
A fix for issue2653 with 1d155582a8ea introduced a discrepancy how default
branch should be denoted when converting with branchmap from different SCM.
E.g. for Git and Mercurial you need to use 'default' whilst for Perforce and
SVN you had to use 'None'. This changeset unifies 'default' for such purposes
whilst falling back to 'None' when no 'default' mapping specified.
author | Eugene Baranov <eug.baranov@gmail.com> |
---|---|
date | Tue, 14 Jul 2015 14:40:56 +0100 |
parents | 15c2c580b2a7 |
children | 5ef327e9c157 |
rev | line source |
---|---|
10434 | 1 # progress.py show progress bars for some actions |
2 # | |
3 # Copyright (C) 2010 Augie Fackler <durin42@gmail.com> | |
4 # | |
15772
83a140752239
progress: Use the same GPL boilerplate as most hg files
Augie Fackler <durin42@gmail.com>
parents:
15662
diff
changeset
|
5 # This software may be used and distributed according to the terms of the |
83a140752239
progress: Use the same GPL boilerplate as most hg files
Augie Fackler <durin42@gmail.com>
parents:
15662
diff
changeset
|
6 # GNU General Public License version 2 or any later version. |
10434 | 7 |
25522
15c2c580b2a7
progress: deprecate the progress extension
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
25521
diff
changeset
|
8 """show progress bars for some actions (DEPRECATED) |
10434 | 9 |
25522
15c2c580b2a7
progress: deprecate the progress extension
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
25521
diff
changeset
|
10 This extension has been merged into core, you can remove it from your config. |
15c2c580b2a7
progress: deprecate the progress extension
Pierre-Yves David <pierre-yves.david@fb.com>
parents:
25521
diff
changeset
|
11 See hg help config.progress for configuration options. |
10434 | 12 """ |