Skip to content
Snippets Groups Projects
Commit b41c6245 authored by Sven Mäder's avatar Sven Mäder :speech_balloon:
Browse files

Enable automatic rebasing with autostash by default, add git adogg

parent 0f01c6fb
No related branches found
No related tags found
No related merge requests found
......@@ -63,14 +63,15 @@
default = simple
[pull]
# Only pull if fast-forward is possible. Use `git pull --rebase` or `git pull --no-ff` otherwise.
# Only pull if fast-forward is possible. Use `git pull --rebase` or `git pull --no-ff` alternatively.
# Do not set `ff = only` in combination with `rebase = true` to allow automatic rebasing of local commits.
#ff = only
# Use `git pull --rebase` by default, otherwise use `git fetch; git merge`
#rebase = true
# Use `git pull --rebase` by default, alternatively use `git fetch; git merge` (discouraged in most situations)
rebase = true
[rebase]
# Automatically stash and pop your uncommitted changes
#autoStash = true
# Automatically stash and pop your uncommitted changes while rebasing
autoStash = true
[alias]
co = checkout
......@@ -108,3 +109,4 @@
adogd = !"git adogb --date=format:'%Y-%m-%d %H:%M:%S' --format=format:'%C(#d7ff5f)%h%C(reset)%C(auto)%d%C(reset) %C(normal)%s%C(reset) %C(#5fd7ff)%an%C(reset) %C(#d7d7ff)(%ad)%C(reset)'"
adogj = !"git adogv"
adog = !"git adogv"
adogg = !"git adogv -i --grep"
......@@ -74,13 +74,14 @@
default = simple
[pull]
# Only pull if fast-forward is possible. Use `git pull --rebase` or `git pull --no-ff` otherwise.
# Only pull if fast-forward is possible. Use `git pull --rebase` or `git pull --no-ff` alternatively.
# Do not set `ff = only` in combination with `rebase = true` to allow automatic rebasing of local commits.
ff = only
# Use `git pull --rebase` by default, otherwise use `git fetch; git merge`
# Use `git pull --rebase` by default, alternatively use `git fetch; git merge` (discouraged in most situations)
#rebase = true
[rebase]
# Automatically stash and pop your uncommitted changes
# Automatically stash and pop your uncommitted changes while rebasing
#autoStash = true
[alias]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment