Skip to content

Commit 98eb263

Browse files
committed
[update-checkout] Allow untracked files
1 parent 7a736cc commit 98eb263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/update-checkout

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def update_working_copy(repo_path, branch):
3737
print("--- Updating '" + repo_path + "' ---")
3838
with shell.pushd(repo_path, dry_run=False, echo=False):
3939
if branch:
40-
status = shell.capture(['git', 'status', '--porcelain'],
40+
status = shell.capture(['git', 'status', '--porcelain', '-uno'],
4141
echo=False)
4242
if status:
4343
print("Please, commit your changes.")

0 commit comments

Comments
 (0)