forked from seeraven/gitcache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitcache
More file actions
executable file
·21 lines (18 loc) · 819 Bytes
/
Copy pathgitcache
File metadata and controls
executable file
·21 lines (18 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python3
#
# Copyright (c) 2020 by Clemens Rabe <[email protected]>
# All rights reserved.
# This file is part of gitcache (https://github.com/seeraven/gitcache)
# and is released under the "BSD 3-Clause License". Please see the LICENSE file
# that is included as part of this package.
#
"""Local cache for git repositories to speed up working with large repositories."""
# -----------------------------------------------------------------------------
# Module Import
# -----------------------------------------------------------------------------
from git_cache.cli import main_cli
# -----------------------------------------------------------------------------
# Main
# -----------------------------------------------------------------------------
if __name__ == "__main__":
main_cli()