=========================================== 31/05/2013
GIT:
Consists of two repository. one on server side and the other in client side (clone of server side repos).
When client commits, modifications were saved to client side repository
To send modifications to server, client must push commits.
explore git repository with gitk
install and configure git server:
sudo apt-get install git-core
git config –global color.diff auto
git config –global color.status auto
git config –global color.branch auto
git config –global user.name “mabrouk”
==> see your config in vim ~/.gitconfig
create server git repository
cd /home/mba
mkdir mbaGitRepo
cd mbaGitRepo
git init –bare