I have a repository with one branch called testing and on the server I want to have 2 separate folders - one that pulls from the master branch (git pull origin master) and the other pulls from the testing branch (git pull origin testing ? )
Whats the best way to set this up - I tried this and got an error saying that the remote branch is not tracked. I am pretty new to git so not really sure how to set this up?
The idea is to work on the testing branch and then once a week merge it into the master.