We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b961bad commit 23e78a9Copy full SHA for 23e78a9
git-all
@@ -92,10 +92,12 @@ module GitUpdate
92
git_log = "git --git-dir='#{@git_dir}' log --no-merges --oneline"
93
94
out = `#{git_log} #{remote_sha}..#{branch.gcommit.sha}`
95
- top_ten 'NEED PUSH', "#{working_dir}\##{branch.name}", out.split("\n")
+ top_ten('NEED PUSH', "#{working_dir}\##{branch.name}",
96
+ out.split("\n"), true)
97
98
out = `#{git_log} #{branch.gcommit.sha}..#{remote_sha}`
- top_ten 'NEED PULL', "#{working_dir}\##{branch.name}", out.split("\n")
99
+ top_ten('NEED PULL', "#{working_dir}\##{branch.name}",
100
101
end
102
103
0 commit comments