Module: Flipp::Helpers::GitHelper
- Defined in:
- lib/flipp/helpers/git_helper.rb
Class Method Summary collapse
Class Method Details
.current_branch ⇒ Object
6 7 8 |
# File 'lib/flipp/helpers/git_helper.rb', line 6 def self.current_branch `git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* /\1/'`.chomp[1..-1] # Remove control character end |