I have deploy keys set up on my server that I use to pull from github. My question is, What branch gets pulled when I pull using deploy keys? If I do a git status I see
# On branch deploy
nothing to commit (working directory clean)
What is branch deploy? the Master? the Default? Can I pick?
Branch
deployis exactly that: the branch calleddeploy. You can switch the branch by going into the repo directory and doing agit checkout <name-of-branch>, e.g.git checkout master.