I have two branches. Staging and Beta. Staging has code in it ( including files ), that I do not want at all. How can I make Beta completely overwrite Staging, so that none of t
You can simple delete staging and re-create it based on beta:
staging
beta
git branch -D staging git checkout beta git branch staging