|
You are here |
belkadan.com | ||
| | | | |
blog.m5e.de
|
|
| | | | | I've already using different blog systems like WordPress and Ghost, but this is my try to start a blog in english about personal and development topics with Jekyll. Maybe is the domain not my best choice (.de is the domain for germany), but as I haven't any project on it, I will use it. I will be using GitHub as hosting service. That will have a few great side effects: you can download my whole blog via git clone, in the same way you could mirror my blog and if you want to notified when a new change happens, you could subscribe my Blog via the "Watch" Function of GitHub. | |
| | | | |
kittygiraudel.com
|
|
| | | | | A technical write-up on how to clean up a git repository from sensitive information that was inadvertently committed | |
| | | | |
rmrz.ph
|
|
| | | | | I just wanted my git log graphs to have less noise | |
| | | | |
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 . | ||