Using Git

[ git ]

https://git-scm.com/

https://guides.github.com/

INTRODUCTION

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

WINDOWS

https://git-scm.com/download/win
Downloading Git for Windows (32-bit or 64-bit).

LINUX

Debian Linux packages: git, gitk (with dependencies).

INTERNET HOSTING FOR GIT

https://github.com/
GitHub (acquired by Microsoft in 2018).
GitHub Pages is a static web hosting service offered by GitHub to GitHub users for hosting user blogs, project documentation.

https://bitbucket.org/
Bitbucket (owned by Atlassian).

https://gitlab.com/
GitLab

EXERCISES

Find a remote repo https://github.com/ufkapano/pyquats.


$ git clone https://github.com/ufkapano/pyquats.git
Cloning into 'pyquats'...
remote: Enumerating objects: 5, done.
remote: Counting objects: 100% (5/5), done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 163 (delta 1), reused 2 (delta 1), pack-reused 158
Receiving objects: 100% (163/163), 29.46 KiB | 7.36 MiB/s, done.
Resolving deltas: 100% (86/86), done.
$ cd pyquats
$ ls
doc  LICENSE  README.md  src