diff --git a/update-branches.js b/update-branches.js index 35ce034..ffa1d8d 100644 --- a/update-branches.js +++ b/update-branches.js @@ -1 +1,5 @@ -// Code +const { exec } = require('child_process'); + +exec('git pull', (err, stdout, stderr) => { + // handle err, stdout & stderr +});