Obtenha o mais recente Git Commit Sha-1 em um repositório JS
require('child_process').exec('git rev-parse HEAD', function(err, stdout) {
console.log('Last commit hash on this branch is:', stdout);
});
Cheerful Chimpanzee