Category Archives: collaboration

Getting started with a basic Git workflow

By | January 14, 2018

This is a basic walk through of getting a project under version control using Git, from the installation of git, to initializing a project, adding and committing files to pushing to a remote repository. As well as cloning an existing project to start working with. Installation: Head to https://git-scm.com/downloads here you’ll be be able to download the… Read More »

Code collaboration with Git

By | January 11, 2018

When it comes to source code management (SCM), Git is now the de facto standard and a major component in agile development workflows. One of the key features of Git, is that it is by nature distributed rather than centralized. However, when collaborating with others a central shared remote repository such as Github and Gitlab… Read More »