cfg/bin/git-committerconfig

55 lines
1.4 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env python3
2017-12-14 10:18:00 +00:00
# Usage: git setmail
2016-10-19 15:20:54 +00:00
#
# Configuration format:
# [
# {
# "match": ".*",
# "email": "mymail@example.com",
# "gpg-key": "...",
# }
# ]
2016-10-19 15:20:54 +00:00
import sys
import re
import subprocess
import os.path
import json
2016-10-19 15:20:54 +00:00
CONFIG = os.path.expanduser('~/.config/git-committerconfig.json')
2016-10-19 15:20:54 +00:00
def main():
try:
repo = [x.split()[1] for x
in subprocess.check_output(['git', 'remote', '-v'], universal_newlines=True).split('\n')
if re.match('origin.*\(push\)', x)][0]
except:
print('Could not find origin, not setting email.')
return 0
if os.path.isfile(CONFIG):
combinations = json.loads(open(CONFIG).read())
else:
print('Config ({}) found.'.format(CONFIG))
return 1
for combi in combinations:
if re.search(combi['match'], repo):
subprocess.check_call(
['git', 'config', '--local', 'user.email', combi['email']])
if 'gpg-key' in combi and combi['gpg-key'] != '':
subprocess.check_call(
['git', 'config', '--local', 'user.signingkey', combi['gpg-key']])
if 'commit-opts' in combi:
subprocess.check_call(
['git', 'config', '--local', 'commit.cliopts', combi['commit-opts']])
break
2016-10-19 15:20:54 +00:00
return 0
2016-10-19 15:20:54 +00:00
if __name__ == "__main__":
exit(main())