Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Tags
#git
Question
Setup git-pull for automatically perform a rebase instead of a merge
Answer

To setup every new branch to automatically rebase, add the following to your

.gitconfig or .git/config:

[branch]

autosetuprebase = always

Command line: git config [--global] branch.autosetuprebase always

Alternatively, you can setup the git pull command to always behave as if the option --rebase was passed:

[pull]

rebase = true

Command line: git config [--global] pull.rebase true


Tags
#git
Question
Setup git-pull for automatically perform a rebase instead of a merge
Answer
?

Tags
#git
Question
Setup git-pull for automatically perform a rebase instead of a merge
Answer

To setup every new branch to automatically rebase, add the following to your

.gitconfig or .git/config:

[branch]

autosetuprebase = always

Command line: git config [--global] branch.autosetuprebase always

Alternatively, you can setup the git pull command to always behave as if the option --rebase was passed:

[pull]

rebase = true

Command line: git config [--global] pull.rebase true

If you want to change selection, open document below and click on "Move attachment"

pdf

owner: cramer7575 - (no access) - GitNotesForProfessionals.pdf, p77

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.