Skip to content

Instantly share code, notes, and snippets.

View jucian0's full-sized avatar
🇧🇷

Juciano jucian0

🇧🇷
View GitHub Profile
@sangram-chavan
sangram-chavan / Create-Bootable-ISO-Image-From-OS-X-For-VirtualBox
Last active April 14, 2020 13:29
Create-Bootable-ISO-Image-From-OS-X-For-VirtualBox
Create-Bootable-ISO-Image-From-OS-X-Yosemite-For-Intel-Based-Machines
# Mount the installer image
hdiutil attach Install\ OS\ X\ Yosemite.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app
# Convert the boot image to a sparse bundle
hdiutil convert /Volumes/install_app/BaseSystem.dmg -format UDSP -o /tmp/Yosemite
# Increase the sparse bundle capacity to accommodate the packages
hdiutil resize -size 8g /tmp/Yosemite.sparseimage
@okunishinishi
okunishinishi / Remove all git tags
Created March 8, 2014 03:12
Delete all git remote tags
#Delete local tags.
git tag -l | xargs git tag -d
#Fetch remote tags.
git fetch
#Delete remote tags.
git tag -l | xargs -n 1 git push --delete origin
#Delete local tasg.
git tag -l | xargs git tag -d