How to connect SourceTree 4 to your GitLab account


Today we’re going to connect our Gitlab account to SourceTree to be able to clone remote git repositories, make local changes and push them back to our VCS. Download SourceTree for your operating system from https://www.sourcetreeapp.com Continue to login to GitLab with your credentials.Click on your avatar in the upper right corner and select Settings. […]

GitFlow, one of the most successful branching models


GitFlow is a workflow or set of procedural rules while working with Git. In GitFlow there are two main branches: master branch and develop branch All new features and fixes are done in a feature branch, except for hotfixes. A feature branch is branched off of the develop branch. When a feature is completed, it […]