Skip to content

Commit

Permalink
Merge pull request #519 from jupyterlab/list-untracked-files
Browse files Browse the repository at this point in the history
List all untracked files
  • Loading branch information
kgryte authored Jan 8, 2020
2 parents 1c3d20e + 93270f7 commit bca835e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jupyterlab_git/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def status(self, current_path):
Execute git status command & return the result.
"""
p = Popen(
["git", "status", "--porcelain"],
["git", "status", "--porcelain", "-u"],
stdout=PIPE,
stderr=PIPE,
cwd=os.path.join(self.root_dir, current_path),
Expand Down Expand Up @@ -232,7 +232,7 @@ def status(self, current_path):
else:
return {
"code": p.returncode,
"command": "git status --porcelain",
"command": "git status --porcelain -u",
"message": my_error.decode("utf-8"),
}

Expand Down

0 comments on commit bca835e

Please sign in to comment.