Compare commits

..

1 Commits

Author SHA1 Message Date
b470701a9d Add ~/.local/bin to user PATH 2025-08-30 20:42:46 -04:00
2 changed files with 6 additions and 3 deletions

View File

@@ -56,11 +56,11 @@ alias 'log'='git log'
alias 'oneline'='git log --oneline'
alias 'logsig'='git log --show-signature'
alias 'checkout'='git checkout'
alias 'commit'='git commit'
alias 'commit'='git commit -S'
alias 'tcommit'='git commit -m "testing"'
alias 'tamend'='git commit --amend --no-edit --date "`date -R`"'
alias 'amend'='git commit --amend'
alias 'amendnew'='git commit --amend --date "`date -R`"'
alias 'amend'='git commit -S --amend'
alias 'amendnew'='git commit -S --amend --date "`date -R`"'
alias 'giturl'='git remote set-url'
alias 'setorigin'='git remote set-url origin'
alias 'origin'='git remote show origin'

View File

@@ -112,5 +112,8 @@ if ! shopt -oq posix; then
fi
fi
# Add ~/.local/bin to PATH
export PATH="$HOME/.local/bin:$PATH"
# Ask for decryption in terminal window
export GPG_TTY=$(tty)