Monday, 17 April 2017

Node runs code before git pull

Have a git project with branch Dev. Setup server to only track dev branch.

Doing a "git pull origin dev" (say const a = 3; changed to const a =4; on index.js)

Stop the process and run again with node index.js after git pull.

When running the project a=3. But when I look into index.js file I see const a =4;



via Burak Gazi

No comments:

Post a Comment