Compare commits

...

2 Commits

Author SHA1 Message Date
c77f145113 Update gitignore to ignore pycache
Some checks failed
Build Dotfile Bundles / bundle (push) Has been cancelled
Signed-off-by: Nicholas Mello <nick@nmello.dev>
2026-02-24 22:00:36 -06:00
8ebf4c5316 git: Add global rebase and ignore
Update git config to have new rebase settings and global ignore file

Signed-off-by: Nicholas Mello <nick@nmello.dev>
2026-02-24 21:58:08 -06:00
4 changed files with 20 additions and 0 deletions

3
.gitignore vendored
View File

@@ -3,3 +3,6 @@ dotfiles-*.tar.gz
# Fish # Fish
fish/fish_variables fish/fish_variables
# Pycache
**/__pycache__/

View File

@@ -19,6 +19,11 @@ repo_path = "git/gitmessage"
system_path = "~/.gitmessage" system_path = "~/.gitmessage"
type = "file" type = "file"
[tools.git.ignore]
repo_path = "git/gitignore"
system_path = "~/.gitignore"
type = "file"
[tools.tmux] [tools.tmux]
repo_path = "tmux/tmux.conf" repo_path = "tmux/tmux.conf"
system_path = "~/.tmux.conf" system_path = "~/.tmux.conf"

View File

@@ -9,3 +9,14 @@
tool = nvimdiff tool = nvimdiff
[gpg] [gpg]
program = gpg program = gpg
[push]
autoSetupRemote = true
[rebase]
autosquash = true
updateRefs = true
rebaseMerges = true
autoStash = true
rescheduleFailedExec = true
backend = merge
[core]
excludesFile = ~/.gitignore

1
git/gitignore Normal file
View File

@@ -0,0 +1 @@
*.orig