I have a site running on an EC2 instance. Statamic is a simple cms built to run with no DB. It uses yml files for content storage.
This is great but if anyone changes any remote content in the cms and we do a git push we lose the updated content because it gets overwritten.
We also make occasional changes locally.
My EC2 instance has git loaded and I can run a pull from my bitbucket repo and that works great. However, I'd like to be able to pull from the EC2 instance to make sure I have content all up to date.
How can I add the EC2 instance as a remote from my local?
TIA