Tag: <span>git</span>

A while ago I’ve written an article about Git and semantic versioning. All is cool and nice, but what if you don’t need that much complex stuff and just need a simple, minor version increase ? Well, you can do like this: Simple…

Uncategorized

Programavimas

You create a tag in GIT, accidentally pushed it into remote repository. But after some time you understood that you don’t want it. So, how can you remove a tag in GIT? You can do this easily by:git tag -d NAME_OF_YOUR_BAD_TAGgit push origin…

Programavimas

You have edited one file in GIT version control system and you want to reset (revert) changes in this file. How can you do that? Everything is simple: use checkout — in the command line. For instance:

Programavimas