Explore >> Select a destination


You are here

www.integralist.co.uk
| | andrew.yurisich.com
1.4 parsecs away

Travel
| |
| | yasoob.github.io
1.6 parsecs away

Travel
| |
| | andreabergia.com
0.9 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 .
| | ryanharter.com
16.8 parsecs away

Travel
| This is the second post in my Start to Finish series. You can check out my first post introducing the series and my tools here. What is SCM? SCM, or source code management, is a system that helps developers manage the source code for their projects. They have been around forever, things like CVS, Subversion (SVN) and now Git are the popular ones. SCMs allow you to version your source code, which is why they are also called Version Control Systems.