summaryrefslogtreecommitdiffstats
path: root/git_command.py
diff options
context:
space:
mode:
Diffstat (limited to 'git_command.py')
-rw-r--r--git_command.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/git_command.py b/git_command.py
index 36fcfe7c..a5cf514b 100644
--- a/git_command.py
+++ b/git_command.py
@@ -14,17 +14,20 @@
14 14
15import functools 15import functools
16import os 16import os
17import sys
18import subprocess 17import subprocess
18import sys
19from typing import Any, Optional 19from typing import Any, Optional
20 20
21from error import GitError 21from error import GitError
22from error import RepoExitError 22from error import RepoExitError
23from git_refs import HEAD 23from git_refs import HEAD
24import platform_utils 24import platform_utils
25from repo_trace import REPO_TRACE, IsTrace, Trace 25from repo_trace import IsTrace
26from repo_trace import REPO_TRACE
27from repo_trace import Trace
26from wrapper import Wrapper 28from wrapper import Wrapper
27 29
30
28GIT = "git" 31GIT = "git"
29# NB: These do not need to be kept in sync with the repo launcher script. 32# NB: These do not need to be kept in sync with the repo launcher script.
30# These may be much newer as it allows the repo launcher to roll between 33# These may be much newer as it allows the repo launcher to roll between