我刚刚进入 VC,尤其是 git。我知道基本命令,git add/commit/remote
但很难理解输出:
$ git show f27d852
commit f27d852fc750a9c3f71eaf0acf586164b76faddf
Author: myusername <myemail@gmail.com>
Date: Tue Jun 28 22:59:35 2016 +0530
changed color to a different color
diff --git a/css/business-casual.css b/css/business-casual.css
index bbd44d7..ee1765e 100644
--- a/css/business-casual.css
+++ b/css/business-casual.css
@@ -194,5 +194,5 @@ footer p {
/* CUSTOM CSS - BY ME */
.brand {
- color: #ff0000;
- }
\ No newline at end of file
+ color: #ffdd000;
+ }
每条线是什么意思?如何阅读它。谁能解释一下?
谢谢dk