Changeset View
Changeset View
Standalone View
Standalone View
mercurial/commands.py
Show First 20 Lines • Show All 6760 Lines • ▼ Show 20 Line(s) | if ( | ||||
opts.get(b'all') | opts.get(b'all') | ||||
or opts.get(b'copies') | or opts.get(b'copies') | ||||
or ui.configbool(b'ui', b'statuscopies') | or ui.configbool(b'ui', b'statuscopies') | ||||
) and not opts.get(b'no_status'): | ) and not opts.get(b'no_status'): | ||||
copy = copies.pathcopies(ctx1, ctx2, m) | copy = copies.pathcopies(ctx1, ctx2, m) | ||||
morestatus = None | morestatus = None | ||||
if ( | if ( | ||||
ui.verbose or ui.configbool(b'commands', b'status.verbose') | (ui.verbose or ui.configbool(b'commands', b'status.verbose')) | ||||
) and not ui.plain(): | and not ui.plain() | ||||
and not opts.get(b'print0') | |||||
): | |||||
morestatus = cmdutil.readmorestatus(repo) | morestatus = cmdutil.readmorestatus(repo) | ||||
ui.pager(b'status') | ui.pager(b'status') | ||||
fm = ui.formatter(b'status', opts) | fm = ui.formatter(b'status', opts) | ||||
fmt = b'%s' + end | fmt = b'%s' + end | ||||
showchar = not opts.get(b'no_status') | showchar = not opts.get(b'no_status') | ||||
for state, char, files in changestates: | for state, char, files in changestates: | ||||
▲ Show 20 Lines • Show All 952 Lines • Show Last 20 Lines |