Compare commits

...

2 Commits

Author SHA1 Message Date
cb779f4134 Add git alias prunebranches 2026-03-19 19:16:18 -04:00
a7e00cbac7 Add claude aliases/gitignore 2026-03-19 19:15:55 -04:00
3 changed files with 4 additions and 0 deletions

1
bash_aliases.d/claude Normal file
View File

@ -0,0 +1 @@
alias claude='claude --name "Claude: $(basename $PWD)"'

View File

@ -31,6 +31,8 @@ function git-config-joshs()
# Do not automatically mark my branch as tracking the remote branch that I
# happened to use as the starting point.
git config --global branch.autoSetupMerge false
# delete all branches that have been merged to HEAD
git config --global alias.prunebranches '!git branch --merged | grep -v '^\*' | xargs git branch -d'
}
function git-config-local-personal()
{

View File

@ -10,3 +10,4 @@ tags
/.ruby-version
/.ruby-gemset
/_local/
.claude/