Explore >> Select a destination


You are here

ouraring.com
| | blog.cy.md
12.4 parsecs away

Travel
| |
| | www.uraimo.com
23.2 parsecs away

Travel
| | Since the first installment of this series a few established ports have received updates and a few new things have finally landed on master. Let's recap what happened in the last month on the front of porting Swift on other platforms.
| | samuelgruetter.net
11.4 parsecs away

Travel
| | When using git, I sometimes want to fast-forward some branchA, but currently I'm on branchB. The simplest way to do this is to checkout branchA, do a pull (or another command to fast-forward branchA), and then to checkout branchB again. However, when switching branches, git modifies my source files, so when I'm back on branchB and recompile, make will think many files changed, and the recompilation might take a long time. So it would be nice to fast-forward branches without checking them out, and here's ...
| | andreabergia.com
79.3 parsecs away

Travel
| 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 .