зеркало из https://github.com/github/ruby.git
Push the current (topic) branch to the remote upstream
This commit is contained in:
Родитель
4fabb74471
Коммит
d802698d3e
|
@ -510,6 +510,15 @@ class VCS
|
||||||
dryrun = opts.fetch(:dryrun) {$DEBUG} if opts
|
dryrun = opts.fetch(:dryrun) {$DEBUG} if opts
|
||||||
args = [COMMAND, "push"]
|
args = [COMMAND, "push"]
|
||||||
args << "-n" if dryrun
|
args << "-n" if dryrun
|
||||||
|
(branch = cmd_read(%W"#{COMMAND} symbolic-ref --short HEAD")).chomp!
|
||||||
|
(upstream = cmd_read(%W"#{COMMAND} branch --list --format=%(upstream) #{branch}")).chomp!
|
||||||
|
while ref = upstream[%r"\Arefs/heads/(.*)", 1]
|
||||||
|
upstream = cmd_read(%W"#{COMMAND} branch --list --format=%(upstream) #{ref}")
|
||||||
|
end
|
||||||
|
unless %r"\Arefs/remotes/([^/]+)/(.*)" =~ upstream
|
||||||
|
raise "Upstream not found"
|
||||||
|
end
|
||||||
|
args << $1 << "HEAD:#$2"
|
||||||
STDERR.puts(args.inspect) if dryrun
|
STDERR.puts(args.inspect) if dryrun
|
||||||
system(*args) or return false
|
system(*args) or return false
|
||||||
true
|
true
|
||||||
|
|
Загрузка…
Ссылка в новой задаче