TAGGING A GIT BRANCH Show all tags git tag Search tag git tag -l “tag-search-pattern” E.g. git tag -l “v2.0.2*” Create annotated tag git tag -a <tagname> -m…
COMPARE BRANCH Compare two branches (local) and show how much commits each branch is ahead of the other git rev-list –left-right –count <branch1>…<branch2> DIFF STATUS Get differences status…