Created
May 17, 2013 09:21
-
-
Save mike-zhang/5597980 to your computer and use it in GitHub Desktop.
合并两个git仓库
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
import os | |
dir1 = "essays" | |
dir2 = "../tmp" | |
tmpBranchName = "other" | |
execCommand = os.system | |
strCmd1 = "cd %s && git remote add %s %s && git fetch %s \ | |
&& git checkout -b %s %s/master && git checkout master \ | |
&& git merge %s && git branch -d %s && cd .." % (dir1,tmpBranchName,dir2, \ | |
tmpBranchName,tmpBranchName,tmpBranchName,tmpBranchName,tmpBranchName,) | |
print strCmd1 | |
execCommand(strCmd1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment