aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/extend
diff options
context:
space:
mode:
authorMike McQuaid2017-10-18 10:59:59 +0100
committerGitHub2017-10-18 10:59:59 +0100
commit3a606abaa13a3090f3c6336efed435006f091c60 (patch)
treea361933786386df0b3edc81a47707fcbab919dad /Library/Homebrew/extend
parent1d541804c8ec90ef622c2a4d2519226e6f55d531 (diff)
parenta8ca47d294d1399393c4f066e0bebd356d500148 (diff)
downloadbrew-3a606abaa13a3090f3c6336efed435006f091c60.tar.bz2
Merge pull request #3229 from BenMusch/check-for-master-no-refactor
doctor: Check for branch of core tap (take 2)
Diffstat (limited to 'Library/Homebrew/extend')
-rw-r--r--Library/Homebrew/extend/git_repository.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/Library/Homebrew/extend/git_repository.rb b/Library/Homebrew/extend/git_repository.rb
index c15988550..6b89d175c 100644
--- a/Library/Homebrew/extend/git_repository.rb
+++ b/Library/Homebrew/extend/git_repository.rb
@@ -36,6 +36,15 @@ module GitRepositoryExtension
end
end
+ def git_branch
+ return unless git? && Utils.git_available?
+ cd do
+ Utils.popen_read(
+ "git", "rev-parse", "--abbrev-ref", "HEAD"
+ ).chuzzle
+ end
+ end
+
def git_last_commit_date
return unless git? && Utils.git_available?
cd do