Skip to content
This repository was archived by the owner on Apr 3, 2025. It is now read-only.

Latest commit

 

History

History
25 lines (20 loc) · 1.15 KB

File metadata and controls

25 lines (20 loc) · 1.15 KB

<- 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](index.md)