我不希望diff
显示空行的更改(如果已添加或删除),但
$ git diff --ignore-blank-lines
diff --git a/bin/requestHandlers.js b/bin/requestHandlers.js
index 758d02c..6d8b98d 100644
--- a/bin/requestHandlers.js
+++ b/bin/requestHandlers.js
@@ -1,3 +1,6 @@
+var exec = require("child_process").exec;
+
+
function start() {
console.log("Request handler 'start' was called.");
它显示添加的空行。
有没有办法强制git不在上面的考试中显示第2行和第3行?
答案 0 :(得分:1)
从git的手册页:
--ignore-blank-lines
Ignore changes whose lines are all blank.
问题是您的更改包含一些非空白的行。
删除var exec
行,它会起作用!
我不知道如何做你想做的事。至少不整齐。
你可以尝试:
git diff --ignore-blank-lines | grep -v '^\+$'
答案 1 :(得分:0)
如果上下文中存在编辑,则该选项将被忽略。与-U
一起使用较小的上下文。就您而言,-U0
。
使用git版本2.19.1.windows.1的示例:
git diff --ignore-space-at-eol -b -w --ignore-blank-lines 539e08 7d05ca
@@ -342,11 +385,14 @@ else
)
.Columns(columns =>
{
- columns.Bound(t => t.sStartDate).Title("Date".TranslateString(ref translation));
+ columns.Bound(t => t.StartDate).Format("{0:dd-MM-yyyy}").Title("Date".TranslateString(ref translation));
columns.Bound(p => p.StartTime).ClientTemplate("#= sStartTime #").Title("StartTime".TranslateString(ref translation)).Width(110);
columns.Bound(t => t.TrainingSubject).Title("Subject".TranslateString(ref translation));
+
})
.ClientDetailTemplateId("template")
+
+
.Sortable(s => s.Enabled(false)))
<div style="clear:both;height:250px"> </div>
(END)
git diff --ignore-space-at-eol -b -w --ignore-blank-lines -U0 539e08 7d05ca
@@ -345 +388 @@ else
- columns.Bound(t => t.sStartDate).Title("Date".TranslateString(ref translation));
+ columns.Bound(t => t.StartDate).Format("{0:dd-MM-yyyy}").Title("Date".TranslateString(ref translation));
有时候,它坏了:
git diff --ignore-space-at-eol -b -w --ignore-blank-lines -U0 7d05ca
@@ -394,3 +350 @@ else
-
-
- .Sortable(s => s.Enabled(false)))
+ .Sortable(s => s.Enabled(wut)))