gtl 0.5.24

gtl is a Git-based tool designed to simplify the management of multiple remote repositories. It extends Git's functionality by providing one-click initialization and pushing to multiple remote repositories, making it especially useful for developers who need to maintain multiple remote repositories simultaneously.
1
2
3
4
5
6
7
8
#!/usr/bin/env python3
import subprocess
import sys

from normalize_line_endings import main

if __name__ == "__main__":
    sys.exit(main())