Class: Git::Branch

Inherits:
Path
  • Object
show all
Defined in:
lib/git/branch.rb

Instance Attribute Summary collapse

Attributes inherited from Path

#path

Instance Method Summary collapse

Methods inherited from Path

#readable?, #writable?

Constructor Details

#initialize(base, name) ⇒ Branch

Returns a new instance of Branch.



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/git/branch.rb', line 6

def initialize(base, name)
  @remote = nil
  @full = name
  @base = base
  @gcommit = nil
  @stashes = nil
  
  parts = name.split('/')
  if parts[1]
    @remote = Git::Remote.new(@base, parts[0])
    @name = parts[1]
  else
    @name = parts[0]
  end
end

Instance Attribute Details

#fullObject

Returns the value of attribute full.



4
5
6
# File 'lib/git/branch.rb', line 4

def full
  @full
end

#nameObject

Returns the value of attribute name.



4
5
6
# File 'lib/git/branch.rb', line 4

def name
  @name
end

#remoteObject

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



36
37
38
# File 'lib/git/branch.rb', line 36

def archive(file, opts = {})
  @base.lib.archive(@full, file, opts)
end

#checkoutObject



31
32
33
34
# File 'lib/git/branch.rb', line 31

def checkout
  check_if_create
  @base.checkout(@full)
end

#createObject



56
57
58
# File 'lib/git/branch.rb', line 56

def create
  check_if_create
end

#currentObject



64
65
66
# File 'lib/git/branch.rb', line 64

def current
  determine_current
end

#deleteObject



60
61
62
# File 'lib/git/branch.rb', line 60

def delete
  @base.lib.branch_delete(@name)
end

#gcommitObject



22
23
24
25
# File 'lib/git/branch.rb', line 22

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



45
46
47
48
49
50
51
52
53
54
# File 'lib/git/branch.rb', line 45

def in_branch (message = 'in branch work')
  old_current = @base.lib.branch_current
  checkout
  if yield
    @base.commit_all(message)
  else
    @base.reset_hard
  end
  @base.checkout(old_current)
end

#merge(branch = nil, message = nil) ⇒ Object



68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/git/branch.rb', line 68

def merge(branch = nil, message = nil)
  if branch
    in_branch do 
      @base.merge(branch, message)
      false
    end
    # merge a branch into this one
  else
    # merge this branch into the current one
    @base.merge(@name)
  end
end

#stashesObject



27
28
29
# File 'lib/git/branch.rb', line 27

def stashes
  @stashes ||= Git::Stashes.new(@base)
end

#to_aObject



85
86
87
# File 'lib/git/branch.rb', line 85

def to_a
  [@full]
end

#to_sObject



89
90
91
# File 'lib/git/branch.rb', line 89

def to_s
  @full
end

#update_ref(commit) ⇒ Object



81
82
83
# File 'lib/git/branch.rb', line 81

def update_ref(commit)
  @base.lib.update_ref(@full, commit)
end