Created
May 27, 2019 14:10
-
-
Save phouverneyuff/d949c484bbbf937ae914af6b533df9ad to your computer and use it in GitHub Desktop.
Revisions
-
phouverneyuff created this gist
May 27, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ emulate sh -c '. ~/.profile' #emulate sh -c '. /etc/profile' function gitDeleteTagLocalAndRemote(){ #delete tag local and from remote git push --delete "$1" "$2" git tag -d $2 echo "tag $2 delete from remote $1 and local" } alias gtdo="gitDeleteTagLocalAndRemote"