diff options
Diffstat (limited to 'gcl')
-rwxr-xr-x | gcl | 56 |
1 files changed, 48 insertions, 8 deletions
@@ -9,13 +9,16 @@ import shutil GITCONFIGS = 'gitconfigs/' + class colors: WARNING = '\033[93m' FAIL = '\033[91m' ENDC = '\033[0m' + def print_usage(): - print('''git config linker (gcl): + print( + '''git config linker (gcl): gcl status check the status of the directories in . @@ -30,9 +33,11 @@ def print_usage(): gcl unlink <repo>... undo "gcl link <repo>" (only needed if you want to stop using gcl) -''') +''' + ) sys.exit() + args = sys.argv[1:] if len(args) == 0: print_usage() @@ -40,15 +45,22 @@ if len(args) == 0: if not os.path.exists(GITCONFIGS + '/.git/config'): sys.exit(f'expected {GITCONFIGS} to be a git repository') + def get_link_error(path): configpath = path + '/.git/config' if not os.path.exists(configpath): missing = os.path.relpath(os.path.realpath(configpath)) - return colors.FAIL + 'BROKEN LINK' + colors.ENDC + f' ({missing} does not exist)' - elif os.path.islink(configpath) and os.path.relpath(os.path.realpath(configpath)) != GITCONFIGS + path: + return ( + colors.FAIL + 'BROKEN LINK' + colors.ENDC + f' ({missing} does not exist)' + ) + elif ( + os.path.islink(configpath) + and os.path.relpath(os.path.realpath(configpath)) != GITCONFIGS + path + ): missing = os.path.relpath(os.path.realpath(configpath)) return colors.WARNING + 'LINK MISMATCH' + colors.ENDC + f' ({missing})' + def get_repo_status(path): errors = [] link_error = get_link_error(path) @@ -57,10 +69,25 @@ def get_repo_status(path): if hasremote(path + '/.git/config'): try: - if subprocess.check_output(['git', 'branch', '-r', '--contains', 'HEAD'], cwd=path, stderr=subprocess.DEVNULL) == b'': + if ( + subprocess.check_output( + ['git', 'branch', '-r', '--contains', 'HEAD'], + cwd=path, + stderr=subprocess.DEVNULL, + ) + == b'' + ): errors.append(colors.WARNING + 'UNPUSHED' + colors.ENDC) except subprocess.CalledProcessError as err: - if subprocess.run(['git', 'rev-parse', 'HEAD'], cwd=path, stderr=subprocess.DEVNULL, stdout=subprocess.DEVNULL) == 0: + if ( + subprocess.run( + ['git', 'rev-parse', 'HEAD'], + cwd=path, + stderr=subprocess.DEVNULL, + stdout=subprocess.DEVNULL, + ) + == 0 + ): # the first command did not just fail because there are no commits yet raise err else: @@ -70,20 +97,30 @@ def get_repo_status(path): errors.append(colors.WARNING + 'DIRTY' + colors.ENDC) return ', '.join(errors) + def print_repo_table(reponames): maxlen = max([len(s) for s in reponames]) for reponame in reponames: print(f'\t{reponame.ljust(maxlen)} {get_repo_status(reponame)}') print() + linked = [] unlinked = [] not_a_repo = [] + def hasremote(path): config = configparser.ConfigParser() config.read(path) - return any([':' in config[s].get('url','') for s in config.sections() if s.startswith('remote')]) + return any( + [ + ':' in config[s].get('url', '') + for s in config.sections() + if s.startswith('remote') + ] + ) + def scan(): for filename in sorted(os.listdir()): @@ -98,6 +135,7 @@ def scan(): else: unlinked.append(filename) + cmd = args.pop(0) if cmd == 'status': @@ -120,7 +158,9 @@ elif cmd == 'link': for repo in args: configpath = repo + '/.git/config' if not os.path.isfile(configpath): - print(f"skipping '{repo}' because {configpath} is not a file (maybe already linked?)") + print( + f"skipping '{repo}' because {configpath} is not a file (maybe already linked?)" + ) continue if os.path.exists(GITCONFIGS + repo): sys.exit(f"aborting since {GITCONFIGS + repo} already exists") |