Last active
March 20, 2023 05:49
-
-
Save ngelx/b84fe4fb1c7bdceeced701f1829e6293 to your computer and use it in GitHub Desktop.
Revisions
-
ngelx revised this gist
Mar 20, 2023 . No changes.There are no files selected for viewing
-
ngelx revised this gist
Mar 20, 2023 . 1 changed file with 2 additions and 2 deletions.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 @@ -5,9 +5,9 @@ `git tag <tagname> <commitId>` # make a new tag locally `git push --tags` ### Remote `git pull --tags -f` ## Pretty printing -
ngelx revised this gist
Mar 20, 2023 . 1 changed file with 3 additions and 3 deletions.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 @@ -1,9 +1,9 @@ ## Local repo `git tag -d <tagname>` # delete the old tag locally `git push origin :refs/tags/<tagname>` # delete the old tag remotely `git tag <tagname> <commitId>` # make a new tag locally `git push --tags` Remote -
ngelx revised this gist
Mar 20, 2023 . 1 changed file with 1 addition and 1 deletion.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 @@ -1,7 +1,7 @@ ## Local repo `git tag -d <tagname>` # delete the old tag locally `git push origin :refs/tags/<tagname> # delete the old tag remotely git tag -a <tagname> <commitId> # make a new tag locally git push origin <tagname> -
ngelx revised this gist
Mar 20, 2023 . 1 changed file with 2 additions and 1 deletion.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 @@ -1,5 +1,6 @@ ## Local repo `git tag -d <tagname>` # delete the old tag locally git push origin :refs/tags/<tagname> # delete the old tag remotely git tag -a <tagname> <commitId> # make a new tag locally git push origin <tagname> -
ngelx revised this gist
Mar 20, 2023 . 1 changed file with 1 addition and 0 deletions.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 @@ -1,3 +1,4 @@ ## Local repo git tag -d <tagname> # delete the old tag locally git push origin :refs/tags/<tagname> # delete the old tag remotely git tag -a <tagname> <commitId> # make a new tag locally -
ngelx revised this gist
Mar 20, 2023 . 1 changed file with 1 addition and 1 deletion.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 @@ -8,5 +8,5 @@ Remote git pull --tags -f ## Pretty printing git log --pretty=oneline -
ngelx revised this gist
Mar 20, 2023 . 1 changed file with 1 addition and 1 deletion.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 @@ -8,5 +8,5 @@ Remote git pull --tags -f ## Pretty git log --pretty=oneline -
ngelx revised this gist
Mar 20, 2023 . 1 changed file with 1 addition and 1 deletion.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 @@ -3,7 +3,7 @@ git push origin :refs/tags/<tagname> # delete the old tag remotely git tag -a <tagname> <commitId> # make a new tag locally git push origin <tagname> Remote git pull --tags -f -
ngelx revised this gist
Mar 20, 2023 . 1 changed file with 12 additions and 1 deletion.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 @@ -1 +1,12 @@ git tag -d <tagname> # delete the old tag locally git push origin :refs/tags/<tagname> # delete the old tag remotely git tag -a <tagname> <commitId> # make a new tag locally git push origin <tagname> Remote git pull --tags -f git log --pretty=oneline -
ngelx created this gist
Mar 20, 2023 .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 @@