Skip to content

Instantly share code, notes, and snippets.

View lisacharlotterost's full-sized avatar

Lisa Charlotte Muth lisacharlotterost

View GitHub Profile
@gka
gka / git-go
Created May 11, 2016 20:45
git-go
#!/usr/bin/env node
var cmds = [];
if (process.argv.length < 3) {
console.log('You need to provide a commit message required!');
process.exit(-1);
}
cmds.push('git add -A');
cmds.push('git add -u');