Note. I am not sure if this has already been asked, since I cannot find any question that matches my context (or I cannot understand the contexts of existing questions)
These days I love Git. In particular, the theme of branches. I am working on a small code-sharing application. And I have (local) branches like "master", "authentication", "bookmarks", "comments", "nose", etc.
My (supposed) workflow looks something like this: Create a topic branch ==> Work in the section branches ==> Commit the files in the ==> branch Combine the changes in the topic branch into the "master" branch. (And later delete the topic branch)
I tried to do the same for a couple of branches. It worked fine. But later, when I checked the Git schedule, even if I followed the same workflow, all the chances took place on the "host". No tree lines diverge or converge! From now on, it shows one single line with several commits. I'm not sure why? I have the impression I screwed something with a HEAD pointer?
To give a practical introduction, here is my Git timeline: http://github.com/none-da/zeshare/network
Here are the commands I used:
>> git branch authentication_feature >> git checkout authentication_feature >>
git branch merge github commit
None-da
source share