Skip to content

Commit

Permalink
Update base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
alex20230721 authored Oct 5, 2024
1 parent 493f934 commit b4a0e1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git/repo/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ def __init__(
R"""Create a new :class:`Repo` instance.
:param path:
The path to either the root git directory or the bare git repo::
The path to either the root git directory, the .git directory under the root git directory or the bare git repo::
repo = Repo("/Users/mtrier/Development/git-python")
repo = Repo("/Users/mtrier/Development/git-python/.git")
repo = Repo("/Users/mtrier/Development/git-python.git")
repo = Repo("~/Development/git-python.git")
repo = Repo("$REPOSITORIES/Development/git-python.git")
repo = Repo(R"C:\Users\mtrier\Development\git-python\.git")
Expand Down

0 comments on commit b4a0e1a

Please sign in to comment.