summaryrefslogtreecommitdiff
path: root/git
diff options
context:
space:
mode:
Diffstat (limited to 'git')
-rw-r--r--git/exc.py7
-rw-r--r--git/util.py20
2 files changed, 17 insertions, 10 deletions
diff --git a/git/exc.py b/git/exc.py
index e8ff784c..045ea9d2 100644
--- a/git/exc.py
+++ b/git/exc.py
@@ -8,6 +8,7 @@
from gitdb.exc import BadName # NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614
from gitdb.exc import * # NOQA @UnusedWildImport skipcq: PYL-W0401, PYL-W0614
from git.compat import safe_decode
+from git.util import remove_password_if_present
# typing ----------------------------------------------------
@@ -54,7 +55,7 @@ class CommandError(GitError):
stdout: Union[bytes, str, None] = None) -> None:
if not isinstance(command, (tuple, list)):
command = command.split()
- self.command = command
+ self.command = remove_password_if_present(command)
self.status = status
if status:
if isinstance(status, Exception):
@@ -66,8 +67,8 @@ class CommandError(GitError):
s = safe_decode(str(status))
status = "'%s'" % s if isinstance(status, str) else s
- self._cmd = safe_decode(command[0])
- self._cmdline = ' '.join(safe_decode(i) for i in command)
+ self._cmd = safe_decode(self.command[0])
+ self._cmdline = ' '.join(safe_decode(i) for i in self.command)
self._cause = status and " due to: %s" % status or "!"
stdout_decode = safe_decode(stdout)
stderr_decode = safe_decode(stderr)
diff --git a/git/util.py b/git/util.py
index 6e6f0955..0711265a 100644
--- a/git/util.py
+++ b/git/util.py
@@ -5,7 +5,6 @@
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
from abc import abstractmethod
-from .exc import InvalidGitRepositoryError
import os.path as osp
from .compat import is_win
import contextlib
@@ -94,6 +93,8 @@ def unbare_repo(func: Callable[..., T]) -> Callable[..., T]:
"""Methods with this decorator raise InvalidGitRepositoryError if they
encounter a bare repository"""
+ from .exc import InvalidGitRepositoryError
+
@wraps(func)
def wrapper(self: 'Remote', *args: Any, **kwargs: Any) -> T:
if self.repo.bare:
@@ -412,11 +413,12 @@ def expand_path(p: Union[None, PathLike], expand_vars: bool = True) -> Optional[
def remove_password_if_present(cmdline: Sequence[str]) -> List[str]:
"""
Parse any command line argument and if on of the element is an URL with a
- password, replace it by stars (in-place).
+ username and/or password, replace them by stars (in-place).
If nothing found just returns the command line as-is.
- This should be used for every log line that print a command line.
+ This should be used for every log line that print a command line, as well as
+ exception messages.
"""
new_cmdline = []
for index, to_parse in enumerate(cmdline):
@@ -424,12 +426,16 @@ def remove_password_if_present(cmdline: Sequence[str]) -> List[str]:
try:
url = urlsplit(to_parse)
# Remove password from the URL if present
- if url.password is None:
+ if url.password is None and url.username is None:
continue
- edited_url = url._replace(
- netloc=url.netloc.replace(url.password, "*****"))
- new_cmdline[index] = urlunsplit(edited_url)
+ if url.password is not None:
+ url = url._replace(
+ netloc=url.netloc.replace(url.password, "*****"))
+ if url.username is not None:
+ url = url._replace(
+ netloc=url.netloc.replace(url.username, "*****"))
+ new_cmdline[index] = urlunsplit(url)
except ValueError:
# This is not a valid URL
continue