Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1928)

Unified Diff: py/utils/git_utils.py

Issue 655383002: Revert "Add GetModifiedFiles() function to git_utils." (Closed) Base URL: https://skia.googlesource.com/common@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: py/utils/git_utils.py
diff --git a/py/utils/git_utils.py b/py/utils/git_utils.py
index e0bb6e06ec4f9107219da6eb0eb7dd37f913d6ae..fec79d7b6cd11f693950ab6dd1d95d660a03d350 100644
--- a/py/utils/git_utils.py
+++ b/py/utils/git_utils.py
@@ -89,12 +89,6 @@ def GetRemoteMasterHash(git_url):
'refs/heads/master']).rstrip()
-def GetModifiedFiles():
- """Returns a list of locally modified files within the current working dir.
- """
- return shell_utils.run([GIT, 'ls-files', '-m']).splitlines()
-
-
def GetCurrentBranch():
return shell_utils.run([GIT, 'rev-parse', '--abbrev-ref', 'HEAD']).rstrip()
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698