August 2019
Beginner to intermediate
798 pages
17h 2m
English
Note that git(1) has a huge number of commands and options that you do not need to use on a daily basis. In this subsection, I am going to present you with the most useful and popular git(1) commands in my experience and based on the way I work.
Please note that in order to get an existing GitHub repository onto your local computer, you will need to use the git clone command followed by the URL of the repository:
$ git clone git@github.com:mactsouk/go-kafka.git Cloning into 'go-kafka'... remote: Enumerating objects: 13, done. remote: Counting objects: 100% (13/13), done. remote: Compressing objects: 100% (8/8), done. remote: Total 13 (delta 4), reused 10 (delta 4), pack-reused 0 Receiving objects: 100% (13/13), done. Resolving deltas: ...
Read now
Unlock full access