module GGSM::Sync

Public Instance Methods

sync_flow() click to toggle source
# File lib/ggsm/command/sync.rb, line 8
def sync_flow
  check_submodule

  result = system 'git pull'
  unless result
    return
  end

  switch_flow(get_current_branch, true)
end