git-process 0.9.3 → 0.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile.lock +1 -1
- data/lib/git-process/git_branches.rb +1 -1
- data/lib/git-process/version.rb +1 -1
- metadata +2 -2
data/Gemfile.lock
CHANGED
|
@@ -61,7 +61,7 @@ module GitProc
|
|
|
61
61
|
def [](branch_name)
|
|
62
62
|
branch_name = current.name if branch_name == 'HEAD'
|
|
63
63
|
br = @items.find {|b| b.name == branch_name}
|
|
64
|
-
if br.nil? and
|
|
64
|
+
if br.nil? and branch_name !~ /origin\//
|
|
65
65
|
@lib.logger.warn {"Could not find '#{branch_name}' in #{@items.map{|i|i.name}.join(',')}"}
|
|
66
66
|
end
|
|
67
67
|
br
|
data/lib/git-process/version.rb
CHANGED