We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4061c3a + c031961 commit 0027601Copy full SHA for 0027601
1 file changed
scripts/pyutils/gitutils.py
@@ -27,7 +27,7 @@ def add_files_to_staging_area(self, file_paths=[], all=False):
27
return
28
29
if all:
30
- self.git_repo.index.add(A=True)
+ self.git_repo.git.add("-A")
31
else:
32
self.git_repo.index.add(file_paths)
33
0 commit comments