Mercurial > hg
annotate contrib/win32/buildlocal.bat @ 27180:8e7db961535a
addrevision: only use the incoming base if it is a good delta (issue4975)
Before this change, the 'lazydeltabase' would blindly build a delta using the
base provided by the incoming bundle and try to use it. If that base was far
down the revlog, the delta would be seen as "no good" and we would fall back to
a full text revision.
We now check if the delta is good and fallback to a computing a delta again the
tipmost revision otherwise (as we would do without general delta).
Later changesets will improve the logic to compute the fallback delta using the
general delta logic.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Tue, 01 Dec 2015 16:06:20 -0800 |
parents | 70ef5b610222 |
children |
rev | line source |
---|---|
13383
70ef5b610222
contrib: add win32/buildlocal.bat
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
1 @echo off |
70ef5b610222
contrib: add win32/buildlocal.bat
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
2 rem Double-click this file to (re)build Mercurial for Windows in place. |
70ef5b610222
contrib: add win32/buildlocal.bat
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
3 rem Useful for testing and development. |
70ef5b610222
contrib: add win32/buildlocal.bat
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
4 cd ..\.. |
70ef5b610222
contrib: add win32/buildlocal.bat
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
5 del /Q mercurial\*.pyd |
70ef5b610222
contrib: add win32/buildlocal.bat
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
6 del /Q mercurial\*.pyc |
70ef5b610222
contrib: add win32/buildlocal.bat
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
7 rmdir /Q /S mercurial\locale |
70ef5b610222
contrib: add win32/buildlocal.bat
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
8 python setup.py build_py -c -d . build_ext -i build_mo |
70ef5b610222
contrib: add win32/buildlocal.bat
Adrian Buehlmann <adrian@cadifra.com>
parents:
diff
changeset
|
9 pause |