Skip to content

Commit cf1ec3a

Browse files
committed
Add git prompt and bazel completion
1 parent 0484b16 commit cf1ec3a

File tree

3 files changed

+572
-24
lines changed

3 files changed

+572
-24
lines changed

.bashrc

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# git prompt
2+
source ~/.git-prompt.sh
3+
export PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
4+
export PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\\$ "'
5+
export GIT_PS1_SHOWDIRTYSTATE=true
6+
export GIT_PS1_SHOWSTASHSTATE=true
7+
export GIT_PS1_SHOWUNTRACKEDFILES=true
8+
export GIT_PS1_SHOWUPSTREAM="auto"
9+
export GIT_PS1_SHOWCOLORHINTS=true
10+
11+
# bazel completion
12+
source /usr/share/bash-completion/completions/bazel
13+
14+
alias gjf='git show --diff-filter=AM --pretty="" --name-only HEAD | grep java$ | xargs -r google-java-format -i'
15+
alias b='git show --diff-filter=AM --pretty="" --name-only HEAD | grep --regex "BUILD\|WORKSPACE" | xargs buildifier'

0 commit comments

Comments
 (0)