1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

land-remote: Checkout repository first.

This commit is contained in:
Jelmer Vernooij 2010-10-01 19:24:20 +02:00
parent ff5fdb65f5
commit 56ad550a92

View File

@ -36,6 +36,7 @@ if not opts.remote_repo:
sys.exit(1)
remote_repo = stdout.rstrip()
print "Remote tempdir: %s" % remote_repo
# Bootstrap, git.samba.org is close to sn-devel
remote_args = ["git", "clone", "git://git.samba.org/samba.git", remote_repo]
#remote_args = ["git", "init", remote_repo]
print "%s$ %s" % (opts.host, " ".join(remote_args))
@ -44,10 +45,10 @@ else:
remote_repo = opts.remote_repo
print "Pushing local branch"
args = ["git", "push", "--force", "git+ssh://%s/%s" % (opts.host, remote_repo), "HEAD:HEAD"]
args = ["git", "push", "--force", "git+ssh://%s/%s" % (opts.host, remote_repo), "HEAD:land"]
print "$ " + " ".join(args)
subprocess.check_call(args)
remote_args = ["python", "%s/script/land.py" % remote_repo, "--repository=%s" % remote_repo]
remote_args = ["cd", remote_repo, ";", "git", "checkout", "land", ";", "python", "./script/land.py", "--repository=%s" % remote_repo]
if opts.email:
remote_args.append("--email=%s" % opts.email)
if opts.always_email: