Skip to content

Instantly share code, notes, and snippets.

View mtrung's full-sized avatar
💭
I may be slow to respond.

Trung Vo mtrung

💭
I may be slow to respond.
View GitHub Profile
@MartinMReed
MartinMReed / aosp.sh
Last active October 16, 2019 01:33
Compile AOSP (Android Open Source Project) on macOS
#! /bin/sh
#
# Build directory:
BUILD_DIRECTORY=~/Desktop
#
#
#
# Each build of AOSP is tied to a specific source tag. You can find the match between the
# build number and source tag from the link below. If you choose a tag that does not properly
# match with the build number, you will receive a warning prompt when running this script.
@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