Skip to content

Instantly share code, notes, and snippets.

View lisacharlotterost's full-sized avatar

Lisa Charlotte Muth lisacharlotterost

View GitHub Profile
@lisacharlotterost
lisacharlotterost / gita
Last active June 20, 2016 20:21 — forked from gka/git-go
gita
#!/usr/bin/env node
var cmds = [];
if (process.argv.length < 3) {
console.log('You just totally forgot the commit message.');
process.exit(-1);
}
cmds.push('git add -A');
cmds.push('git commit -m "'+process.argv.slice(2).join(' ')+'"');