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

Side by Side Diff: gitscripts/git_number.py

Issue 188383002: Refactor the way that git executables are launched in depot tools. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years, 9 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 unified diff | Download patch
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2013 The Chromium Authors. All rights reserved. 2 # Copyright 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Usage: %prog [options] [<commitref>]* 6 """Usage: %prog [options] [<commitref>]*
7 7
8 If no <commitref>'s are supplied, it defaults to HEAD. 8 If no <commitref>'s are supplied, it defaults to HEAD.
9 9
10 Calculates the generation number for one or more commits in a git repo. 10 Calculates the generation number for one or more commits in a git repo.
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 finalize(targets) 258 finalize(targets)
259 259
260 print '\n'.join(map(str, map(get_num, targets))) 260 print '\n'.join(map(str, map(get_num, targets)))
261 return 0 261 return 0
262 except KeyboardInterrupt: 262 except KeyboardInterrupt:
263 return 1 263 return 1
264 264
265 265
266 if __name__ == '__main__': # pragma: no cover 266 if __name__ == '__main__': # pragma: no cover
267 sys.exit(main()) 267 sys.exit(main())
OLDNEW
« gitscripts/git_cl.py ('K') | « gitscripts/git_cl.py ('k') | gitscripts/git_try.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698