IN BLESSED
mkdir gitlab/blessedrepo
cd gitlab/blessedrepo
git init
Creating new files:
vim README
adding:
git add .
git commit -m "first file in blessed repository"
git push
IN DEVELOPERS
mkdir developer2
cd developer2
git clone /Users/air/gitlab/blessedrepo
ls
blessedrepo
ls blessedrepo/
README
cd blessedrepo
vim fileindev2.html
git add .
MacBook-Air-de-Air:blessedrepo air$ git commit -m "added file by developer2"