Skip to content

Instantly share code, notes, and snippets.

@wnoguchi
Created September 21, 2013 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wnoguchi/6650988 to your computer and use it in GitHub Desktop.
Save wnoguchi/6650988 to your computer and use it in GitHub Desktop.
Gitオレオレコマンドラインエイリアス集 ref: http://qiita.com/wnoguchi/items/537e20c1f439a7ad95b3
#!/bin/bash
# For Ubuntu Users:
# ~/.bash_aliases
# git quick commit.
alias gqc='git add -A && git commit'
# git quick commit with default commit message.
alias gqcd='git add -A && git commit -m "commit."'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment