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

Side by Side Diff: git_freezer.py

Issue 181043018: Add git thaw/freeze to depot_tools. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@git_map
Patch Set: rebase 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
« no previous file with comments | « git_common.py ('k') | python_git_runner.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/local/bin/python
2 import sys
3 import re
4 import optparse
5
6 import subcommand
7
8 from git_common import run, stream
9
10 FREEZE = 'FREEZE'
11 SECTIONS = {
12 'indexed': 'soft',
13 'unindexed': 'mixed'
14 }
15 MATCHER = re.compile(r'%s.(%s)' % (FREEZE, '|'.join(SECTIONS)))
16
17
18 def CMDfreeze(_parser, _args):
19 """freeze a branches changes."""
agable 2014/02/28 19:35:35 possessive
20 took_action = False
21 status = [(line[:2], line[2:]) for line in run('status', '-z').split('\0')]
22 if status[-1] == ('', ''):
23 status.pop()
24 if any(mode[0] != ' ' for mode, _ in status):
25 run('commit', '-m', FREEZE + '.' + 'indexed')
agable 2014/02/28 19:35:35 + '.indexed'?
26 took_action = True
27 if any(mode[0] in ' ?' for mode, _ in status):
28 run('add', '-A')
29 run('commit', '-m', FREEZE + '.' + 'unindexed')
30 took_action = True
31
32 if not took_action:
33 print 'Nothing to freeze.'
34
35
36 def CMDthaw(_parser, _args):
37 """returns a frozen branch to the state before it was frozen."""
38 took_action = False
39 for sha in (s.strip() for s in stream('rev-list', 'HEAD').xreadlines()):
40 msg = run('show', '--format=%f%b', '-s', 'HEAD')
41 match = MATCHER.match(msg)
42 if not match:
43 if not took_action:
44 print 'Nothing to thaw.'
45 break
46
47 run('reset', '--' + SECTIONS[match.group(1)], sha)
48 took_action = True
49
50
51 def main():
52 dispatcher = subcommand.CommandDispatcher(__name__)
53 return dispatcher.execute(optparse.OptionParser(), sys.argv[1:])
54
55 if __name__ == '__main__':
56 sys.exit(main())
OLDNEW
« no previous file with comments | « git_common.py ('k') | python_git_runner.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698