|
You are here |
jiby.tech | ||
| | | | |
jamesmead.org
|
|
| | | | | Using conditional includes in your git configuration | |
| | | | |
fnordig.de
|
|
| | | | | Personal website of Jan-Erik Rediger | |
| | | | |
wizardzines.com
|
|
| | | | | [AI summary] A preview of a programming comic by Julia Evans explains how to use various git diff commands to view staged, unstaged, and combined changes between files. | |
| | | | |
andreabergia.com
|
|
| | | Git has an excellent tool designed to help you reorder the commit history: interactive rebase. This can be excellent if you want to keep the history clean, so that it helps other programmers understand the logic behind the changes rather than the actual sequence of commits. Lets walk through an example. Lets write some history Lets start by creating an empty project in a new directory: $ git init . | ||