Top Level Namespace

Instance Method Summary collapse

Instance Method Details

#git(cmd, opts = {:output => false}) ⇒ Object



4
5
6
# File 'lib/capistrano/deploy/tagger.rb', line 4

def git(cmd, opts={:output => false})
  opts[:output] ? `git #{cmd} #{debug}`.chomp : system("git #{cmd} > /dev/null 2>&1")
end