Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions episodes/02-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,21 @@ And on Windows:
$ git config --global core.autocrlf true
```

## Merge Strategy

As we already know, git is clever and can help us to combine two different versions of the same file that has been worked on in parallel. This is known as merging. There are multiple strategies that git can utilise to
merge two different versions:

1. Standard merge
2. Rebase

The exact details of these strategies are beyond the scope of this lesson, but a standard merge should be your default strategy unless there's a good reason to use rebase. We can set the default strategy git will use
with the command:

```
$ git config --global pull.rebase false
```

::::::::::::::::::::::::::::::::::::::::::::::::::

Alfredo also has to set his favorite text editor, following this table:
Expand Down