How to Rename GIT Branch?

Git branch can be renamed with a simple command "git branch -m <new-name>", this will rename your current git branch name.

How To Clone A GIT Repository

Git repository can be downloaded or cloned with the "git clone" command with the path of the repository as an argument. This will clone the specified git repository folder in your current directory.

How to checkout a git tag

But sometimes we need to checkout a remote tag to our local. You can achieve this by fetching it from remote and checkout it as a branch on local.