Git Install
This post will help you to setup latest Git into Ubuntu Linux
Git is a version control system for tracking changes in computer files and coordinating work on those files among multiple people. It is primarily used for source code management in software development, but it can be used to keep track of changes in any set of files.
Use the PPA from the maintainers of git on Ubuntu:
sudo apt-add-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git
git --version
For setup CentOS 7 use this command:
sudo yum install git
git --version

Comments
Post a Comment