I just started using git and noticed that sometimes there would be a piece of kind of random text after the @@ -100,3 +100,4 @@
. I believe that piece of text acts as a comment in a diff file, but I don't understand how this happened. Below is the output of git diff
after I removed an empty line from my file:
diff --git a/init.el b/init.el
index 95ae69b..7c1d279 100755
--- a/init.el
+++ b/init.el
@@ -601,4 +601,3 @@ for example. 20201010103030.txt"
:diminish abbrev-mode)
(use-package htmlize) ; for exporting org agenda to html
-
As you can see there's for example. 20201010103030.txt
in there in this case. And this particular string is from the comment I wrote for one of my functions.
There would be other things some other times.
Can anyone explain what this is?