> For the complete documentation index, see [llms.txt](https://gittutorial.gitbook.io/practical-git-via-gitextensions/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gittutorial.gitbook.io/practical-git-via-gitextensions/bare-minimal-configurations.md).

# Bare Minimal Configurations

Here are the bare minimal configurations, your GitExtensions might look different but similar. It's recommended to select the `Global for all repositories` so that we don't have to configure our repositories individually.

![](https://blobscdn.gitbook.com/v0/b/gitbook-28427.appspot.com/o/assets%2F-LS-Lr-k8ca7XeqESs7Z%2F-LS-OCfXmwtHY3FvxpAy%2F-LS-OPRL5IpJB84IdOw1%2Fimage.png?alt=media\&token=4dd30725-4d2b-4f7c-b8dd-4fcf6cbd1fa0)

​

* Username and email are straightforward.
* Editor is mainly used for interactive rebase which we will discuss later. We can choose the `"C:\Program Files (x86)\GitExtensions\GitExtensions.exe" fileeditor` from the dropdown to use the GitExtensions' built-in editor or whatever we like except `notepad` (until the line ending issue is fixed by Microsoft).
* Mergetool is mainly used when solving merge conflicts, make sure you choose one that supports 3-way merge such as BeyondCompare, KDiff, Meld. After put in the `Path to mergetool`, we can use the `Suggest` button to fill the `Mergetool command`
* Difftool is used to compare diff in your favourite external tool
* Line ending: If you only develop on Windows you can choose the `Checkout Windows-style`, otherwise better to use the `as-is`

For the difftool and mergetool, we could also modify the `~/.gitconfig` file to have something like below (for BeyondCompare3)

```
[diff]
        guitool = beyondcompare3
        tool = BeyondCompare3
        indentHeuristic = true
[merge]
        tool = BeyondCompare3
[mergetool "BeyondCompare3"]        
        path = C:/Program Files (x86)/Beyond Compare 3/bcomp.exe        
        cmd = \"C:/Program Files (x86)/Beyond Compare 3/bcomp.exe\" \"$LOCAL\" \"$REMOTE\" \"$BASE\" \"$MERGED\"
[difftool "beyondcompare3"]        
        path = C:/Program Files (x86)/Beyond Compare 3/bcomp.exe        
        cmd = \"C:/Program Files (x86)/Beyond Compare 3/bcomp.exe\" \"$LOCAL\" \"$REMOTE\"
```

​


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://gittutorial.gitbook.io/practical-git-via-gitextensions/bare-minimal-configurations.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
