Skip to content

Instantly share code, notes, and snippets.

@rrakso
Forked from gregmercer/gittag.sh
Created June 17, 2020 13:09

Revisions

  1. @gregmercer gregmercer created this gist Dec 7, 2012.
    6 changes: 6 additions & 0 deletions gittag.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    #!/bin/bash

    echo -n "Tag Name: "
    read -e TAG
    git tag $TAG
    git push origin --tags