Showing posts with label Useful git commands. Show all posts
Showing posts with label Useful git commands. Show all posts

Thursday, March 14, 2019

Useful GIT Commands

Git is a distributed version-control system for tracking changes in source code during software development. 
# delete local tag 'v2.0.1'
git tag -d v2.0.1

# delete remote tag 'v2.0.1' (eg, GitHub version too)
git push origin :refs/tags/v2.0.1

# alternative approach
git push --delete origin v2.0.1
git tag -d v2.0.1