比如这样:
diff --git a/test.java b/test.java
index 70fd330..941c28d 100644
--- a/test.java
+++ b/test.java
@@ -1,5 +1,7 @@
public class HelloWorld {
public static void main(String[] args) {
- System.out.println("World, Hello!");
+ //zhangsan modify this for xxxx. 2023-02-26 start
+ System.out.println("Hello, World!");
+ //zhangsan modify this for xxxx. 2023-02-26 end
}
}
一般这种注释都是最终代码验证 ok 上传时才加。
如果代码的修改分散在很多不同的位置,那么加这个注释就很痛苦。
作为懒人,实在不想做这种麻烦事,于是写了个小脚本为添加到暂存区的修改添加注释:
使用方法
./icomment path "comment"
发出来给各位大佬看看还有没有可以改进的地方,请尽情批评。
https://github.com/LinkTTT/icomment
注释, test, Java, 2023-02-26