Hacker News new | ask | show | jobs
by sandreas 483 days ago
I use `qp`for `quick-push` with a function to provide a comment:

  # git alias
  qp = "!f() { git add . && git commit -m \"$1\" && git push; }; f"


  # usage
  git qp "whatever your comment is"
1 comments

I almost never want to do `git add .`. I find `git add -u` to be better; it only stages known files.