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 $ git status On branch master Changes to be committed: (use "git restore --staged <file>..." to unstage) modified: index.html
$ git commit -m "make university awesome" [master 7f0f66a] make university awesome 1 file changed, 1 insertion(+), 1 deletion(-)
$ git status On branch master nothing to commit, working tree clean