Git tutorials
To install git sudo apt-get update sudo apt-get git-core To check the version of git git --version To setup Git configuration 1. Git initialize :- git init 2. check for git status :- git status 3. Add user name : git config --global user.name "email@guidanz.com" 4. Add email id for user :- git config --global user.email email@guidanz.com 6. Add git repository :- git remote add origin https://github.com/try-git/try_git.git 7. Clone repository :- git clone https://github.com/try-git/try_git.git Set proxy settings in git git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080 git config --global https.proxy https://proxyuser:proxypwd@proxy.server.com:8080 Remove proxy git config --global --unset http.proxy git config --global --unset https.proxy Create a new project Assume that we have to create new project under...