At this point, it is assumed that your girlfriend is expecting a development invite. Statistically speaking, you are most likely to choose GitHub and so you do. It is easy to create a new account from the platform github.com and consequently add a repository as well.
A new repository must first exist on the cloud before pushing to it. Pushing is when we type ‘git push’ to publish our commits to the cloud. You can commit as many times as you would like locally (on your machine) however these changes will only exist in your machine. Git needs a ‘push’ to reflect these changes to the cloud for back-up, collaboration or application use.
Instructions for creating a repository are provided with each new repository created. Just copy and paste the commands given and you will be good to go. After this, you can invite a collaborator by using the Git menu. It will send an email invite to your girlfriend and if she is not Git savvy; refer her to the first of this series.
Her first step will be to perform a ‘git clone’. This will copy everything from remote (cloud) to her machine. Now she is officially a collaborator. She can now push amendments into the repository by creating new files and or making changes to the existing work.
Working on the same files and pushing them will create conflicts. If you both edited the same file and line, Git will throw a conflict error when receiving the changes. This is where ‘branches’ kick into action.
A branch in Git is a copy of the main. You are free to work directly on the main but having a branch to work on has merits as we shall explore. A branch has everything that the main had at the point of creation. The main branch is by default called ‘main’ but you are free to change the name. Most developers that I’ve met use ‘master’.
Creating a branch is simple; just type ‘git branch he-dev’. This creates a branch from the current one with the name ‘he-dev’. It is conveniently assumed that your girlfriend will get the gist and create hers with ‘she-dev’ as the alias. This way, either of you can hop into each others branches and explore the relationship as it were from the host branch. You can also create a branch off of another branch if need be.
At this moment now that you have established a version management system, you may proceed to defining the relationship code. It’s highly advised to first set up a version management system on any of the projects you create before things get serious. Always commit from the first working version. From there, commits are unlimited and are free to perform as many as logically possible.
At this point, we now have three branches; ‘main’ , ‘he-dev’ and ‘she-dev’. ‘main’ is the current version. It is the law, the other two represent versions of the main with the respective changes. Now the fun stuff begins.