We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0484b16 commit cf1ec3aCopy full SHA for cf1ec3a
.bashrc
@@ -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