installing git
If you install git on your server you can easly make release checkouts and deployments. Use following command to install git
sudo apt-get install git-core
git configuration
You can edit git config by using command
sudo vim ~/.gitconfig
you can afterwards add following lines
git config --global user.name "NewUser"
git config --global user.email newuser@example.com
following command will show you available config
git config --list
No comments:
Post a Comment