I am having some difficulty understanding how to use tags versus branches in git.
I just moved the current version of our code from cvs to git, and now I'm going to be working on a subset of that code …
When I know I won't use a branch any more is it possible to close or lock it? Actually I would like to close a branch but I don't think it is possible to close a branch with GIT. what …
I have created a Git tag as v1.1 using
git tag -a v1.1 -m 'my version 1.1'
and I pushed that tag. Later, I made some changes related to v1.1. Now when I push new changes and check the git …