Compare commits

...

2 Commits

Author SHA1 Message Date
Joel Beckmeyer afa1cf2361 add git config 2024-01-24 08:56:50 -05:00
Joel Beckmeyer 4e1e2c72fd xxtip: simplify 2024-01-24 08:55:47 -05:00
2 changed files with 25 additions and 4 deletions

24
dot_config/git/config Normal file
View File

@ -0,0 +1,24 @@
[user]
email = joel@beckmeyer.us
name = Joel Beckmeyer
[color]
ui = auto
[push]
default = current
[filesystem "N/A|13.0.2|/dev/sda2"]
timestampResolution = 10000 nanoseconds
minRacyThreshold = 6379 microseconds
[merge]
tool = meld
[review "review.lineageos.org"]
username = jbeckmeyer
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[pull]
rebase = false
[core]
autocrlf = input
safecrlf = true

View File

@ -8,8 +8,5 @@ back_to_current_branch() {
exit 1
}
git checkout master
git pull --rebase upstream master
git push -f
git checkout "$current_branch"
git fetch upstream master
git rebase master