Quantcast
Channel: c0nnexx10n : C0nnect1ng L1fe w1th Techn010gy
Viewing all articles
Browse latest Browse all 10

QuckTip: Tagging your code on git

$
0
0

 

For Tagging
>git tag -a v1.4 -m ‘version 1.4′
For viewing the tag
>git tag
For pushing it for everyone
>git push --tags
For tagging an existing commit
> git tag -a v1.2 9fceb02 <start of the changeset code>
For fetching tags from repository
> git fetch --tags

Filed under: Java Tagged: git

Viewing all articles
Browse latest Browse all 10

Trending Articles