Sep 15 2015
Git: How to merge your branch
In this post I will show you four ways to merge your branch with the main branch, which we will call develop, of the project.
1. Merging on develop
git checkout develop git pull origin develop git merge yourBranch
This method is the most frequently used. It uses the recursive automatic merging method of Git to merge the changes of your branch upon the main develop branch.
2. Merging with rebase
git checkout yourBranch git rebase develop
In this method you are applying the develop branch upon yourBranch. If there is a conflict in the process of merging the process stops and you must fix your conflicts manually which may be an advantage some developers. Moreover it does not produce a merge commit message, so it helps to keep the commit history clean.
3. Merging with pull on your branch
git checkout yourBranch git pull origin yourBranch git pull origin develop

Oct 20 2015
Tips for beginners: How to align text & content with html & css
In this post we show how to vertically align your text even if the text is changing its font size dynmically and also how to
align horizontally content (aka divs – otherwise you can do it with span tags) using the old fashioned floats. At the end you can find
the code in jsFiddle for further practice.
By Giannis Kanellopoulos • Programming, Uncategorized 0 • Tags: CSS, HTML