Skip to content

Instantly share code, notes, and snippets.

View lisacharlotterost's full-sized avatar

Lisa Charlotte Muth lisacharlotterost

View GitHub Profile

Keybase proof

I hereby claim:

  • I am lisacharlotterost on github.
  • I am lisacrost (https://keybase.io/lisacrost) on keybase.
  • I have a public key ASBPCpLAzg1aK2IwNA2ptbDImTpjvJeQqYDa_UKg-k-6Qgo

To claim this, I am signing this object:

@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(' ')+'"');