Differences between revisions 1 and 2
Revision 1 as of 2021-01-14 00:47:29
Size: 474
Editor: PieterSmit
Comment:
Revision 2 as of 2021-01-14 20:43:22
Size: 523
Editor: PieterSmit
Comment: update git tag delete
Deletions are marked like this. Additions are marked like this.
Line 18: Line 18:
git --tag -d "v1.0.0" git tag -d "v1.0.0"
git push --delete origin "v1.0.0"

git pull
git tag
Line 22: Line 26:

\

Git/Tags

Tags can be added to a specific commit in a git repo.

Add tag

  • Either through web gui of git server e.g. bitbucket or from commandline.
    • add tagg

      git tag -a "v1.0.0"

Push tag to origin/upstream repo

  • After adding tag to local git repo

    git push --tags

Delete a tag

  • With bitbucket (2021) can only do it from CLI and push to repo.
  • Delete local tag v1.0.0

    git tag -d "v1.0.0"
    git push --delete origin "v1.0.0"
    
    git pull
    git tag

Git/Tags (last edited 2022-05-10 06:17:38 by PieterSmit)