August 2019
Beginner to intermediate
798 pages
17h 2m
English
For local changes to be transferred to the GitHub repository, you will need to execute the git push command. The output of the git push command is similar to the following:
$ touch a_file.go $ git add a_file.go $ git commit -a -m "Adding a new file" [master 782c4da] Adding a new file 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 ch07/a_file.go $ git push Enumerating objects: 5, done. Counting objects: 100% (5/5), done. Delta compression using up to 8 threads Compressing objects: 100% (3/3), done. Writing objects: 100% (3/3), 337 bytes | 337.00 KiB/s, done. Total 3 (delta 2), reused 0 (delta 0) remote: Resolving deltas: 100% (2/2), completed with 2 local objects. To github.com:PacktPublishing/Mastering-Go-Second-Edition.git ...
Read now
Unlock full access