I’m trying to figure out how to use this command properly. I believe this is the command and flag I want to essentially make one branch into my other branch (basically delete a branch and create a new branch with the same name with the files of another branch), but I don’t know for sure, or if I have the syntax correct.
If I do this:
git branch -f master sub-branch
Will it remove all of the files from master and fill it with the files from sub-branch?
The
-fargument stands for--force.masteralready exists, git will not allow you to overwrite it, unless you use-f.sub-branch) will be used to determine where themasterbranch’sHEADshould be pointing to.