Commit 338eabc768db0627a0296bc6d894f0a3b4cf53b6

for_each_selected_remote expects a branch name, not a branch object

Commit diff

Support/app/controllers/remote_controller.rb

 
1414 branch = git.branch.current_branch
1515 branch_remote = branch && branch_remote
1616
17 for_each_selected_remote(:title => "Fetch", :prompt => "Fetch from which shared repository?", :items => git.remotes, :default => branch.remote) do |remote|
17 for_each_selected_remote(:title => "Fetch", :prompt => "Fetch from which shared repository?", :items => git.remotes, :default => branch.remote.name) do |remote|
1818 puts "<h2>Fetching from #{remote}</h2>"
1919 output = run_fetch(remote)
2020 puts htmlize(output[:text])
toggle raw diff