dotfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README

commit 90ccf780d2305ea885bcad0a23c0341680c1d209
parent 74c8168bed0aef7ec95645dc543ac587bd61aaf6
Author: Pablo Cárdenas <pablo.cardenas@imca.edu.pe>
Date:   Sat,  4 May 2024 11:09:51 -0500

bash: remove unnecessary export in bashrc

Diffstat:
M.bashrc | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/.bashrc b/.bashrc @@ -25,14 +25,14 @@ source "${XDG_CONFIG_HOME:-$HOME/.config}"/shell/aliases.sh GPG_TTY=$(tty) [ -f /usr/share/git/completion/git-prompt.sh ] && source /usr/share/git/completion/git-prompt.sh -#export GIT_PS1_SHOWCOLORHINTS=1 -export GIT_PS1_SHOWDIRTYSTATE=1 -export GIT_PS1_SHOWSTASHSTATE=1 -export GIT_PS1_SHOWUNTRACKEDFILES=1 -export GIT_PS1_SHOWUPSTREAM="auto" -export GIT_PS1_COMPRESSSPARSESTATE=1 -export GIT_PS1_SHOWCONFLICTSTATE=1 -export GIT_PS1_HIDE_IF_PWD_IGNORED=1 +GIT_PS1_SHOWCOLORHINTS= +GIT_PS1_SHOWDIRTYSTATE=1 +GIT_PS1_SHOWSTASHSTATE=1 +GIT_PS1_SHOWUNTRACKEDFILES=1 +GIT_PS1_SHOWUPSTREAM="auto" +GIT_PS1_COMPRESSSPARSESTATE=1 +GIT_PS1_SHOWCONFLICTSTATE=1 +GIT_PS1_HIDE_IF_PWD_IGNORED=1 PS1='\$$([[ $PWD/ = $HOME/* ]] && GIT_DIR=$HOME/.dotfiles GIT_WORK_TREE=$HOME __git_ps1)$(__git_ps1) ' cd() { echo "Use pushd!"; }