| layout | default |
|---|---|
| title | CS 1331 - Git and GitHub |
This guide provides a brief intruduction to Git and GitHub.
You almost certainly have it already. If not,
Debian-based (like Ubuntu):
sudo apt-get install gitRed Hat-based (like Fedora):
sudo yum install gitNote: I haven't used Fedora in many years, so double check that.
If you have a Mac, you must use Homebrew. Then installing git is easy:
brew install gitIt's a good idea to update brew and your brew packages first:
brew update
brew upgradeDownload the Git for Windows installer from Git's official downloads page and run it. Then you'll also have git-bash, which gives you a Bash shell -- a superior alternative to cmd or Power[sic] Shell.
Coming soon ...
Git is a distributed version control system. GitHub is a web application that provides a nice interface for remote repositories.
More to come ...