Comment on Fixing an ‘Ambiguous Head’ in Git by Shin
Actually, that will delete a branch named HEAD. You probably want… `git tag –delete HEAD`
View ArticleComment on Customizing the Ruby TestRunner by ruby test-unit test runner...
[…] Customizing the Ruby TestRunner […]
View ArticleComment on Fixing an ‘Ambiguous Head’ in Git by Tony Camuso
Thank you for the help! I found the errant tag with this command. $ git show-ref | grep HEAD cb2e8bbf916877af21e4b4f83c1173c404d78094 refs/tags/HEAD And the following command fixed the problem $ git...
View ArticleComment on Fixing an ‘Ambiguous Head’ in Git by David Jones
THANK YOU!!!! $ git tag -l will list them all $ git tag -d HEAD got rid of it!
View ArticleComment on The Strange Ruby Splat by The Splat Operator - DEV
[…] The Strange Ruby Splat […]
View ArticleComment on Easily Debug Ruby Loading Issues by Adrian
This is great for `require`, but it doesn’t work for `require_relative` for some reason. I tried the same trick by defining the same function `require_relative`, but it didn’t work. Any ideas?
View ArticleComment on Hash Tricks by Hash.new
[…] I pinched most of the above from here: https://endofline.wordpress.com/2010/12/24/hash-tricks/ […]
View ArticleComment on Using the Mac OS X Find Buffer for Text Navigation by Prevent...
[…] Simple overview from Using the Mac OS X Find Buffer for Text Navigation […]
View Article