Skip to content

Commit

Permalink
Merge pull request #1844 from EliahKagan/refresh-message
Browse files Browse the repository at this point in the history
Suggest full-path refresh() in failure message
  • Loading branch information
Byron committed Feb 24, 2024
2 parents c17f995 + b8ebff8 commit 1e044ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git/cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ def refresh(cls, path: Union[None, PathLike] = None) -> bool:
3. Pass a *path* argument. This path, if not absolute, it immediately
resolved, relative to the current directory. This resolution occurs at
the time of the refresh, and when git commands are run, they are run with
that actual path. If a *path* argument is passed, the
that previously resolved path. If a *path* argument is passed, the
``GIT_PYTHON_GIT_EXECUTABLE`` environment variable is not consulted.
:note: Refreshing always sets the :attr:`Git.GIT_PYTHON_GIT_EXECUTABLE` class
Expand Down Expand Up @@ -438,7 +438,7 @@ def refresh(cls, path: Union[None, PathLike] = None) -> bool:
The git executable must be specified in one of the following ways:
- be included in your $PATH
- be set via $%s
- explicitly set via git.refresh()
- explicitly set via git.refresh("/full/path/to/git")
"""
)
% cls._git_exec_env_var
Expand Down

0 comments on commit 1e044ea

Please sign in to comment.