Method: Mutx::Support::Git.pull_from
- Defined in:
- lib/mutx/support/git.rb
.pull_from(branch_name = nil) ⇒ Object
93 94 95 96 |
# File 'lib/mutx/support/git.rb', line 93 def self.pull_from(branch_name=nil) branch_name = self.branch if branch_name.nil? Mutx::Support::Console.execute("git pull origin #{branch_name}") end |