Git-Fu
| by jpic | git devops dev
Git-fu This tutorial aims to teach Git basics to work in a team.
In this tutorial, you are going to have 3 roles:
the git server, Alice, a developer Bob, another developer. Git central First, create what will serve as central git server for this tutorial:
git init --bare git-central This will output something about master branch being non-inclusive, you can discard this message.
But it will specifically output:
Initialized empty Git repository in ~/git-central/ Alice and Bob will pull and push sources to ~/git-central/ just like if it was a gitlab server, because it’s a “bare” repository.
Read More