gits: fix alias 're' of 'rebase' doing nothing

Change-Id: Ib861155ee988503ee142c97fac531770700761db
This commit is contained in:
Vadim Yanitskiy 2023-01-28 21:51:25 +07:00
parent 6f84a084cd
commit 479e55ac24
1 changed files with 1 additions and 1 deletions

View File

@ -465,7 +465,7 @@ if __name__ == '__main__':
print_status()
elif args.action in ['fetch', 'f']:
cmd_do(['fetch'] + args.remainder)
elif args.action in ['rebase', 'r']:
elif args.action in ['rebase', 'r', 're']:
cmd_rebase()
elif args.action == 'sh':
cmd_sh(args.remainder)