Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

"""Package entry point.""" 

 

# Declare itself as package if needed for better debugging support 

# pylint: disable=multiple-imports,wrong-import-position,redefined-builtin 

if __name__ == '__main__' and __package__ is None: # pragma: no cover 

import os, sys, importlib 

parent_dir = os.path.abspath(os.path.dirname(__file__)) 

sys.path.append(os.path.dirname(parent_dir)) 

__package__ = os.path.basename(parent_dir) 

importlib.import_module(__package__) 

 

 

from gitman.cli import main 

 

 

if __name__ == '__main__': # pragma: no cover 

main()