blob: cbfb012ccc1ed8f993699e1893830ee0e96dab05 [file] [log] [blame]
iannucci@chromium.orgc050a5b2014-03-26 06:18:50 +00001#!/usr/bin/env python
2# Copyright 2014 The Chromium Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6import argparse
7import sys
8
9from git_common import squash_current_branch
10
11def main(args):
12 parser = argparse.ArgumentParser()
13 parser.add_argument(
14 '-m', '--message', metavar='<msg>', default='git squash commit.',
15 help='Use the given <msg> as the first line of the commit message.')
16 opts = parser.parse_args(args)
17 squash_current_branch(opts.message)
18
19if __name__ == '__main__':
20 sys.exit(main(sys.argv))