Skip to content
Marcin Warpechowski edited this page Sep 29, 2016 · 3 revisions

Welcome to the HelloWorld wiki!

How is this repo maintained?

This repo is maintained using git rebase. It always has only as many commits, as there are steps in the Starcounter Quick Start tutorial.

The below example illustrates how to update the content of this repo using `git rebase.

1. Checkout the current tutorial branch

git checkout tutorial-20160606

2. Start a new branch of it, using the current date:

git checkout -b tutorial-20160929

3. Start rewriting the history, starting from first commit:

git rebase --interactive --root

4. A text editor window opens. Change all the "pick" commands to "edit" (or "e")

💡 If you are in Vim, press Insert to enter the insert mode.

Save the text editor and exit

Now the interactive rebase starts. After each step, the commit is already done. You can alter the commit (by running git commit --amend ) continue (git rebase --continue)