Skip to content

Commit c8f12fc

Browse files
committed
Ignore submodules when stashing
Submodule changes cannot be stashed and thus should not be considered when stashing changes. Requires gitpython-developers/GitPython#294 to be applied first.
1 parent cf313c1 commit c8f12fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PyGitUp/git_wrapper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def stash(self):
134134
"""
135135
stashed = False
136136

137-
if self.repo.is_dirty():
137+
if self.repo.is_dirty(consider_submodules=False):
138138
if self.change_count > 1:
139139
message = 'stashing {0} changes'
140140
else:

0 commit comments

Comments
 (0)