I'm trying to do a git pull
from a remote repo on WP Engine, and running into a problem.
$ git pull production master
fatal: Couldn't find remote ref master
$ fatal: The remote end hung up unexpectedly
I ran the following for more info;
$ git branch -a
master
* wpengine
remotes/origin/HEAD -> origin/master
remotes/origin/master
And then tried;
$ git pull production origin/master
fatal: Couldn't find remote ref origin/master
$ fatal: The remote end hung up unexpectedly
And also;
$ git pull production remotes/origin/master
fatal: Couldn't find remote ref remotes/origin/master
$ fatal: The remote end hung up unexpectedly
Am I referencing the remote branch that I want to pull incorrectly, or is there a problem with WP Engine that I need to solve?