dotfiles

regexghost dotfiles and scripts
git clone https://git.regexghost.com/dotfiles.git
Log | Files | Refs | README

commit 0cee682ee4ed172554a4e67f1a93615f5cc597f4
parent e4cf96fbc1a94b423a579444110f50f7fe31222c
Author: regexghost <dev@regexghost.com>
Date:   Fri, 29 May 2026 21:05:36 +0100

added new git and cd aliases

Diffstat:
Mdotfiles/.bashrc | 11+++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/dotfiles/.bashrc b/dotfiles/.bashrc @@ -103,18 +103,21 @@ alias reload='. ~/.bashrc' alias gd='git diff' alias gdc='git diff --word-diff-regex=.' -alias gits='git status' alias gs='git status .' +alias gsa='git status' alias gpl='git pull' alias gl='git log' alias glc='echo $(git rev-list --count HEAD) commits' alias giturl='git config --get remote.origin.url' alias gp='git push' alias ga='git add' +alias gc='git commit' + +alias gitpass='keepassxc-cli show ~/Downloads/passwords.kdbx "GitHub" | grep Notes | cut -d " " -f 2 | xclip -selection clipboard' # Get password and push (GitHub) function gpp () { - keepassxc-cli show ~/Downloads/passwords.kdbx "GitHub" | grep Notes | cut -d " " -f 2 | xclip -selection clipboard + gitpass git push -u origin echo " " | xclip -selection clipboard } @@ -404,6 +407,10 @@ alias bmc='directory_bookmarks current' alias cdp='cd - > /dev/null' +alias cdr='cd ..' +alias cdrr='cd ../..' +alias cdrrr='cd ../../..' + export _FASD_NOCASE=1 eval "$(fasd --init auto)"