Explore >> Select a destination


You are here

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

Travel
| |
| | andreabergia.com
4.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 .
| | 8yd.no
11.5 parsecs away

Travel
| | Git squash takes your commits and squashes them together, usually into one commit. Useful for creating one commit if you've got a lot of smaller commits that creates a messy Git history. Git rebase ...
| | tannerdolby.com
78.3 parsecs away

Travel
| To begin contributing to open-source software, you might want to become familiar with Git. Understanding the workflow of creating your own local copy of a repository and keeping it up to date with the upstream repository is integral to start contributing in public projects.