Mercurial > public > mercurial-scm > hg
comparison mercurial/hg.py @ 49845:e0c0545e2e55
branching: merge stable into default
author | Rapha?l Gom?s <rgomes@octobus.net> |
---|---|
date | Wed, 04 Jan 2023 16:02:22 +0100 |
parents | 5f71fff8dc74 7d6c8943353a |
children | 6065a8936b00 |
comparison
equal
deleted
inserted
replaced
49839:a9602a84a442 | 49845:e0c0545e2e55 |
---|---|
787 # requirement is added. If the extension is explicitly disabled but the | 787 # requirement is added. If the extension is explicitly disabled but the |
788 # requirement is set, the clone aborts early, before transferring any | 788 # requirement is set, the clone aborts early, before transferring any |
789 # data. | 789 # data. |
790 createopts[b'lfs'] = True | 790 createopts[b'lfs'] = True |
791 | 791 |
792 if extensions.disabled_help(b'lfs'): | 792 if b'lfs' in extensions.disabled(): |
793 ui.status( | 793 ui.status( |
794 _( | 794 _( |
795 b'(remote is using large file support (lfs), but it is ' | 795 b'(remote is using large file support (lfs), but it is ' |
796 b'explicitly disabled in the local configuration)\n' | 796 b'explicitly disabled in the local configuration)\n' |
797 ) | 797 ) |