blob: 0e02539356cd414180430498d96e68ce27d21752 [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__':
iannucci@chromium.org7122f7d2014-03-26 06:29:46 +000020 sys.exit(main(sys.argv[1:]))