File: gl.py

package info (click to toggle)
gitless 0.8.8-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 456 kB
  • sloc: python: 3,811; sh: 81; makefile: 7
file content (14 lines) | stat: -rwxr-xr-x 248 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Gitless - a version control system built on top of Git
# Licensed under MIT

# This file is for PyInstaller

import sys

from gitless.cli import gl


if __name__ == '__main__':
  sys.exit(gl.main())