Installing Git - wAlber47/Tech-Journal GitHub Wiki

On Debian/Ubuntu

  1. sudo apt-get update
  2. sudo apt-get install git
  3. Verify: git --version
  4. Configure Git username and email:
    1. git config --global user.name "wAlber47"
    2. git config --global user.email "[email protected]"

On CentOS

  1. sudo yum install git
  2. git --version
  3. git config --global user.name "wAlber47"
  4. git config --global user.email "[email protected]"