Tom Görner 2 роки тому
батько
коміт
6d3143146c

+ 27 - 0
QuickStuff/src/main/java/QuickVerifyCrap/LazynessGreets.java

@@ -0,0 +1,27 @@
+package QuickVerifyCrap;
+
+public class LazynessGreets {
+    public static void main(String[] args) {
+        for(int i=0;i<100;i++)
+        {
+            if(i==0)
+            {
+                //noop, nothing to rename
+            }
+            else
+            {
+                System.out.println("mv snm.xml."+i+" snm.xml");
+            }
+            System.out.println("git add snm.xml");
+            if(i==99)
+            {
+                System.out.println("git commit -m \"Autoxml dump\"");
+            }
+            else
+            {
+                System.out.println("git commit --date=\""+(99-i) +" day ago\" -m \"Autoxml dump\"");
+            }
+            System.out.println("rm snm.xml");
+        }
+    }
+}