Method: BigKeeper::GitflowOperator#start

Defined in:
lib/big_keeper/util/gitflow_operator.rb

#start(path, name, type) ⇒ Object



6
7
8
9
10
11
# File 'lib/big_keeper/util/gitflow_operator.rb', line 6

def start(path, name, type)
  Dir.chdir(path) do
    gitflow_type_name = GitflowType.name(type)
    `git flow #{gitflow_type_name} start #{name}`
  end
end