git config --global user.name <my name>
git config --global user.email <my_email>
git config --global color.ui auto # Colors!
mkdir Repositories && cd $_
git clone [email protected]:TIDCampus/git-tutorial.git
cd git-tutorial
git branch <name>
git checkout <name>
touch profiles/<name>_profile.md
# Add information
git add <name>_profile.md
git commit -m "My first commit with my profile"
git push origin <my_branch>