Skip to content

Commit 393bae5

Browse files
committed
clarified comment
1 parent 9cd9431 commit 393bae5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎doc/source/quickstart.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Existing local git Repo
3939
Clone from URL
4040
##############
4141

42-
For the rest of this tutorial we will use a clone from https://github.com/LeoDaCoda/GitPython-TestFileSys.git
42+
For the rest of this tutorial we will use a clone from https://github.com/gitpython-developers/QuickStartTutorialFiles.git
4343

4444
$ git clone https://github.com/gitpython-developers/QuickStartTutorialFiles.git
4545

‎test/test_quick_doc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_cloned_repo_object(self, local_dir):
4040
# [2-test_cloned_repo_object]
4141
# We must make a change to a file so that we can add the update to git
4242

43-
update_file = 'dir1/file2.txt' # we'll use ./dir1/file2.txt
43+
update_file = 'dir1/file2.txt' # we'll use local_dir/dir1/file2.txt
4444
with open(f"{local_dir}/{update_file}", 'a') as f:
4545
f.write('\nUpdate version 2')
4646
# ![2-test_cloned_repo_object]

0 commit comments

Comments
 (0)