#!/bin/bash

printf "Setup official repository access  \n"

printf "Configure git\n"


git config --global user.name "${git_name}"
git config --global user.email "${git_mail}"

mkdir -p $HOME/.ssh
printf " Host ${git_host} \n HostName ${git_host_name} \n Port ${git_port} \n User ${git_name} \n" > $HOME/.ssh/config



printf "Add  access git  \n"

