We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7487a99 commit a76433cCopy full SHA for a76433c
.editorconfig
@@ -0,0 +1,10 @@
1
+root = true
2
+
3
+[*]
4
+end_of_line = lf
5
+charset = utf-8
6
+trim_trailing_whitespace = true
7
+insert_final_newline = true
8
9
+[*.sh]
10
+indent_style = tab
write-file.sh
@@ -0,0 +1,17 @@
+#!/bin/sh
+FILENAME=file.txt
+for i in $(seq 1 20)
+do
+ printf "⚙️" >> "$FILENAME"
+ git add "$FILENAME"
+ git commit --no-verify --no-gpg-sign --author="Ghost <ghost@github.com>" -m "Update $FILENAME ($i)"
+done
+printf "🐛" >> "$FILENAME"
11
12
+for i in $(seq 21 40)
13
14
15
16
17
0 commit comments