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

Unified Diff: git_squash_branch.py

Issue 184253003: Add git-reup and friends (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@freeze_thaw
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« git_reparent_branch.py ('K') | « git_reparent_branch.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_squash_branch.py
diff --git a/git_squash_branch.py b/git_squash_branch.py
new file mode 100755
index 0000000000000000000000000000000000000000..fbf73369fadf0c01b551af7c4ffdb8c224573f6f
--- /dev/null
+++ b/git_squash_branch.py
@@ -0,0 +1,26 @@
+#!/usr/bin/env python
+# Copyright (c) 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.
+import sys
+
+from git_common import current_branch, upstream, get_or_create_merge_base_tag
+from git_common import run, clean_refs
+
+
+def squash():
+ branch = current_branch()
+ parent = upstream(branch)
+ merge_base = get_or_create_merge_base_tag(branch, parent)
+ run('reset', '--soft', merge_base)
+ run('commit', '-a', '-C', 'HEAD@{1}')
+
+
+def main():
Ryan Tseng 2014/02/28 21:22:05 Add usage and --help
+ squash()
+ clean_refs()
+ return 0
+
+if __name__ == '__main__':
+ sys.exit(squash())
+
« git_reparent_branch.py ('K') | « git_reparent_branch.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698