This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
licenses(["notice"]) | |
cc_binary( | |
name = "jq", | |
visibility = ["//visibility:public"], | |
srcs = glob([ | |
"*.h", | |
"*.c", | |
]), | |
copts = [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias g='git status' | |
alias gb='git branch' | |
alias gd='git diff' | |
alias gdm='git diff master' | |
alias gl='git log' | |
alias ga='git add' | |
alias gaa='git add -p .' | |
alias gco='git checkout' | |
alias gc='git commit -v' | |
alias gca='git commit -v -a' |