Are “git fetch --tags --force” and “git pull <branch>” conmutative operations?
问题 Normally the git tags are a fixed reference to a commit. But sometimes they are used to mark some event ( last-build , base-line , etc..) and they change frequently. I have an script that refreshes those kind of "floating" tags from the reference repository. git fetch --tags --force and also make pull from one branch: git pull origin <mybranch> I know that many git users warn about using floating tags, but i am forced to deal with that. My question is: If the branch is marked by one of those