X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/460d976ba441c927b6749a438b356cbf4fa2c56f..400b7c363c615dca6674a0381122d35f0949b6e6:/bash_profile

diff --git a/bash_profile b/bash_profile
index 9c2e2a1..df81cbe 100644
--- a/bash_profile
+++ b/bash_profile
@@ -8,16 +8,16 @@ export TERM=screen-256color
 
 #git function
 function _set_git_envar_info() {
-    GIT_BRANCH=""
+  GIT_BRANCH=""
 	GIT_PREFIX=""
-    GIT_STATE=""
+  GIT_STATE=""
 	CHECK_SHIT="lol"
  RVM_COMMAND=$(rvm-prompt)
  if [[ $RVM_COMMAND == "" ]]
  then
    RVM_COMMAND="system"
  fi
-    if [[ $(which git 2> /dev/null) ]]
+    if [ -f `which git` ];
     then
         local STATUS
         STATUS=$(git status 2>/dev/null)
@@ -55,7 +55,7 @@ export -f _set_git_envar_info
 
 #this thing for my prompt.
 export PROMPT_COMMAND="_set_git_envar_info"
-export PS1='\[\e[0;31m\]\u\[\e[0m\] at \[\e[0;33m\]\h\[\e[0m\] in \[\e[0;32m\]\w\[\e[0m\]$GIT_PREFIX\[\e[1;34m\]$GIT_BRANCH\[\e[0m\]\[\e[0;32m\]$GIT_STATE \[\e[0;33m\]($RVM_COMMAND) \[\e[0m\] \n\$ '
+export PS1='\[\e[0;31m\]\u\[\e[0m\] at \[\e[0;33m\]\h\[\e[0m\] in \[\e[0;32m\]\w\[\e[0m\]$GIT_PREFIX\[\e[1;34m\]$GIT_BRANCH\[\e[0m\]\[\e[0;32m\]$GIT_STATE \[\e[0;30m\]($RVM_COMMAND) \[\e[0m\] \n\$ '
 
 #display fortune when I start
 echo -e "\033[30m"
@@ -72,8 +72,8 @@ alias ls="ls -FG"
 alias rspec="rspec --color"
 
 #Git utility aliases
-alias gpsc="git push origin "+$GIT_BRANCH
-alias gplc="git pull origin "+$GIT_BRANCH
+alias gpsc="git push origin $GIT_BRANCH"
+alias gplc="git pull origin $GIT_BRANCH"
 
 #Enable Bash Completion
 if [ -f `brew --prefix`/etc/bash_completion ]; then