I am deploying to Digital Ocean via Codeship. Following this example, Codeship runs the following custom script in the Droplet:
ssh root@<MY_IP> 'cd /var/www/example/backend/; git checkout master; git pull; npm install;'
This all runs fine. However, when I SSH into my Droplet from my local machine, the changes are not reflected within the git repo. Instead, there is a directory called v8-compile-cache-0
. Reading the description of the npm package of that name does not further my understanding.
What is going on here, and how do I get my pulled changes properly reflected in the Droplet?