Git and Github
Last updated
Was this helpful?
Last updated
Was this helpful?
From git :
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.
Git helps you:
manage the history of ALL your files related to a certain package (usually inside a single directory, which is called a repository). It adds the "save" and "rollback" bottom to your whole directory.
Together with Github, it backups your files online in a remote repository.
It allows multiple people to collaborate together. Indeed, most packages hosted on Github has dozens or even hundreds of contributors.
While git controls your local file, Github is the remote host that allows you to upload your local repository into a Github repository. It's free!
I do not want to explain git in detail, because there are tons of material introducing git and Github for beginners. Here are my suggestions to start:
Check your terminal, whether git
is installed.
To get all the data and jupyter notebooks for this book:
Create a . (This is )
Watch this .
Read this neat introduction:
Once you understand basic git command (git clone
, add
, commit
, push
, checkout
, merge
), you can use for easier controlling.
Clone or fork (in Github, fork means make a duplication of this repo to your Github) .
to prevent adding large file or temp file into your git repo.