- Create a .gitignore file in the git repository if it does not contain one
touch .gitignore
2. Open up the .gitignore and add the following line to the file
node_modules 3. Remove the node_modules folder from the git repository
| var exec = require('child_process').exec; | |
| var set = function (app) { | |
| app.post('/deploy', function (req, res) { | |
| var feedback; | |
| var branch = 'master'; | |
| try { | |
| feedback = JSON.parse(req.body.payload); |