codeclubsocial.github.io

The CodeClub Getting-Started Guide

Follow me on GitHub

<- Back

Git

Git is an essential part of your coding toolkit. Whether you are coding a solo project or contributing to a group project, you’ll want to manage your codebase by committing your progress to a git repository.

A free and open source distributed version control system, Git is designed to handle everything from small to very large projects with speed and efficiency. (source)

Quick Install:

  • MacOS
  • Linux
    • Debian/Ubuntu: sudo apt-get install git
    • Arch: pacman -S git
    • Fedora:sudo yum install git
  • Windows:
    • Chocolatey: choco install git.install
    • Scoop: sudo scoop install git --global
    • Download: .exe (64-Bit)(32-Bit)

For more on Version Control (Wikipedia).


<- Back