Sha256: 070c806fc2ab807077d22cb35063ee0dddec1e0fdf06e16f9c685af3d8db5f77
Contents?: true
Size: 451 Bytes
Versions: 32
Compression:
Stored size: 451 Bytes
Contents
module GGSM module Stash def try_stash status = `git status --ignore-submodules | grep 'nothing to commit'` need_stash = false if status.strip == '' need_stash = true `git stash` end need_stash end def stash_pop(arry_conflict, module_name) stash_pop = `git stash pop | grep 'CONFLICT'` if stash_pop.strip != '' arry_conflict.push(module_name) end end end end
Version data entries
32 entries across 32 versions & 1 rubygems