Compare commits

...

2 Commits

Author SHA1 Message Date
Joel Beckmeyer 628fd789a9 add git config 2024-02-01 16:02:10 -05:00
Joel Beckmeyer 3f6245124b xxtip: simplify 2024-02-01 16:02:06 -05:00
2 changed files with 26 additions and 5 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 rebase master
git fetch upstream master
git rebase upstream/master