This is a TestGitFlowProject to learn the basic gitflow commands
#Feature Branch commands :
git flow feature start [BranchName]
git add .
git commit -m "type your msg here"
#merge the existing branch in current branch git merge --no-ff [BranchName]
#Revert the existing branch in current branch git revert --no-edit [commitid]
git branch --no-merged master
git tag [entertagNmae] git push --tag
git branch [new branch name] { Note : at the time of current branch }
git remote remove origin, git remote add origin <new_url> , git remote update , git push
git push --delete origin tagname , git tag --delete tagname
git merge --squash [BranchName] [AnotherBranchName]