| # Copyright 2014 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| from git_common import freeze, thaw |
| def CMDfreeze(parser, args): |
| """Freeze a branch's changes, excluding unstaged gitlinks changes.""" |
| def CMDthaw(parser, args): |
| """Returns a frozen branch to the state before it was frozen.""" |
| if gclient_utils.IsEnvCog(): |
| print(f'{args[0]} command is not supported in non-git environment.', |
| dispatcher = subcommand.CommandDispatcher(__name__) |
| ret = dispatcher.execute(optparse.OptionParser(), args) |
| if __name__ == '__main__': |
| sys.exit(main(sys.argv[1:])) |
| except KeyboardInterrupt: |
| sys.stderr.write('interrupted\n') |