Git #
[[dev-notes]] [[github]]
.pyc
__pycache__
tmp
.env
*/*.db
*/*.csv
data
TODO.md
public/d3.min.js
public/plot.min.js
public/modules/idb.js
[[rebase]]
rebase on pull so their are no pointlyess merge commits
git config --list
[email protected]
user.name=Tanner Reyons
| |
| |
To resolve Git merge conflicts, here’s what you need to do:
- Open the conflicting file (
config.kbd) in your text editor. You’ll see sections that look like this:
<<<<<<< HEAD
your current version
=======
incoming changes
>>>>>>> dbc4cb3... commit message
For each conflict section:
- Remove the conflict markers (
<<<<<<<,=======,>>>>>>>) - Choose which version you want to keep, or combine them if needed
- Delete the unwanted version
- Remove the conflict markers (
After editing, save the file
Stage the resolved file:
| |
- Continue the rebase:
| |
Would you like to show me the actual conflicts in your config.kbd file? I can help you decide which changes to keep.
If you want to see the full conflict markers:
| |
Or if you want to see just the conflicting file:
| |