Class: Git::Branch
Instance Attribute Summary collapse
-
#full ⇒ Object
Returns the value of attribute full.
-
#name ⇒ Object
Returns the value of attribute name.
-
#remote ⇒ Object
Returns the value of attribute remote.
Attributes inherited from Path
Instance Method Summary collapse
- #archive(file, opts = {}) ⇒ Object
- #checkout ⇒ Object
- #create ⇒ Object
- #current ⇒ Object
- #delete ⇒ Object
- #gcommit ⇒ Object
-
#in_branch(message = 'in branch work') ⇒ Object
g.branch(‘new_branch’).in_branch do # create new file # do other stuff return true # auto commits and switches back end.
-
#initialize(base, name, track = nil) ⇒ Branch
constructor
– addition of track parameter for –t switch.
- #merge(branch = nil, message = nil) ⇒ Object
- #stashes ⇒ Object
- #to_a ⇒ Object
- #to_s ⇒ Object
- #update_ref(commit) ⇒ Object
Methods inherited from Path
Constructor Details
#initialize(base, name, track = nil) ⇒ Branch
– addition of track parameter for –t switch
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/git/branch.rb', line 7 def initialize(base, name, track=nil) # @remote = nil @full = name @base = base @gcommit = nil @stashes = nil # -- addition of track attribute to implement # --t switch @track = track name, remote = name.split(' ').first.split('/').reverse if remote @remote = Git::Remote.new(@base, remote) name = "#{remote}/#{name}" end @name = name # end |
Instance Attribute Details
#full ⇒ Object
Returns the value of attribute full.
4 5 6 |
# File 'lib/git/branch.rb', line 4 def full @full end |
#name ⇒ Object
Returns the value of attribute name.
4 5 6 |
# File 'lib/git/branch.rb', line 4 def name @name end |
#remote ⇒ Object
Returns the value of attribute remote.
4 5 6 |
# File 'lib/git/branch.rb', line 4 def remote @remote end |
Instance Method Details
#archive(file, opts = {}) ⇒ Object
41 42 43 |
# File 'lib/git/branch.rb', line 41 def archive(file, opts = {}) @base.lib.archive(@full, file, opts) end |
#checkout ⇒ Object
36 37 38 39 |
# File 'lib/git/branch.rb', line 36 def checkout check_if_create @base.checkout(@full) end |
#create ⇒ Object
61 62 63 |
# File 'lib/git/branch.rb', line 61 def create check_if_create end |
#current ⇒ Object
69 70 71 |
# File 'lib/git/branch.rb', line 69 def current determine_current end |
#delete ⇒ Object
65 66 67 |
# File 'lib/git/branch.rb', line 65 def delete @base.lib.branch_delete(@name) end |
#gcommit ⇒ Object
27 28 29 30 |
# File 'lib/git/branch.rb', line 27 def gcommit @gcommit ||= @base.gcommit(@full) @gcommit end |
#in_branch(message = 'in branch work') ⇒ Object
g.branch(‘new_branch’).in_branch do
# create new file
# do other stuff
return true # auto commits and switches back
end
50 51 52 53 54 55 56 57 58 59 |
# File 'lib/git/branch.rb', line 50 def in_branch ( = 'in branch work') old_current = @base.lib.branch_current checkout if yield @base.commit_all() else @base.reset_hard end @base.checkout(old_current) end |
#merge(branch = nil, message = nil) ⇒ Object
73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/git/branch.rb', line 73 def merge(branch = nil, = nil) if branch in_branch do @base.merge(branch, ) false end # merge a branch into this one else # merge this branch into the current one @base.merge(@name) end end |
#stashes ⇒ Object
32 33 34 |
# File 'lib/git/branch.rb', line 32 def stashes @stashes ||= Git::Stashes.new(@base) end |
#to_a ⇒ Object
90 91 92 |
# File 'lib/git/branch.rb', line 90 def to_a [@full] end |
#to_s ⇒ Object
94 95 96 |
# File 'lib/git/branch.rb', line 94 def to_s @full end |
#update_ref(commit) ⇒ Object
86 87 88 |
# File 'lib/git/branch.rb', line 86 def update_ref(commit) @base.lib.update_ref(@full, commit) end |