August 2019
Beginner to intermediate
798 pages
17h 2m
English
The git diff command shows differences between commits and a working repository or branch, and so on.
The following command will show the changes between your files and the files that are on GitHub (before the last git push). These will be the changes that will be added to the version that is on GitHub after a git push command:
$ git diff
diff --git a/content/blog/Stats.md b/content/blog/Stats.md
index 0f36b60..af64ec3 100644
--- a/content/blog/Stats.md
+++ b/content/blog/Stats.md
@@ -16,6 +16,8 @@ title: Statistical analysis of random numbers
## Developing a Kafka producer in Go
+Please note that the format of the first record that is written to Kafka
+specifies the format of the subsequent records
### Viewing the data in ...Read now
Unlock full access