|
You are here |
betterdev.blog | ||
| | | | |
gist.github.com
|
|
| | | | | Some useful Git aliases that I use every day. GitHub Gist: instantly share code, notes, and snippets. | |
| | | | |
petrapixel.neocities.org
|
|
| | | | | A simple Git and GitHub tutorial for beginner coders. Especially for Neocities. | |
| | | | |
antonz.org
|
|
| | | | | Interactive introduction to Git with real-world use cases. | |
| | | | |
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 . | ||