module Atlassian module Stash module Git def get_current_branch %x(git symbolic-ref HEAD)[/refs\/heads\/(.*)/, 1] end def is_in_git_repository? system('git rev-parse') end def get_remotes %x(git remote -v) end def get_remote_url origin = get_remotes.split("\n").collect { |r| r.strip }.grep(/^origin.*\(push\)$/).first URI.extract(origin).first end def ensure_within_git! if is_in_git_repository? yield else raise "fatal: Not a git repository" end end def create_git_alias %x(git config --global alias.create-pull-request "\!sh -c 'stash pull-request \\$0'") end end end end