A Guide to Git & GitHub
In this course we will be learning about version control especially Git and GitHub which provides hosting for Git version control.
$ git add index.html
On branch master No commits yet Changes to be committed: (use "git rm --cached <file>..." to unstage) new file: index.html
git commit -m "First Commit"
[master (root-commit) 0746f1f] First Commit 1 file changed, 1 insertion(+) create mode 100644 index.html
$ git status
On branch master nothing to commit, working tree clean