There are two methods to delete a branch in the remote git server. Either of these two commands is OK. git push origin :BRANCH_TO_BE_DELETED git push –delete origin BRANCH_TO_BE_DELETED Please note the colon in the first command. In order to… Read More