gittest
A test project for Git.
Home
Source code
git clone https://projects.rickardlindberg.me/scm/gittest.git
Recent events
2025-05-03 11:06 Rickard pushed to gittest
commit 1517552e8b934a9d190514183b7111169aa8fbf1
Author: Rickard Lindberg <rickard@rickardlindberg.me>
Date: Sat May 3 11:06:31 2025 +0200
Some chanage.
diff --git a/ci.py b/ci.py
index 3c9a44f..4473440 100644
--- a/ci.py
+++ b/ci.py
@@ -8,5 +8,5 @@ with open("html/index.html", "w") as f:
with open("Dockerfile.ci.files", "w") as f:
f.write(json.dumps({
- "site": "html"
+ #"site": "html"
}))
2025-05-03 10:29 Rickard pushed to gittest
commit 32fdc5358dfaa8a203526528a9d30c6317ecaf13
Author: Rickard Lindberg <rickard@rickardlindberg.me>
Date: Sat May 3 10:29:58 2025 +0200
Some chanage.
diff --git a/ci.py b/ci.py
index 5011cae..3c9a44f 100644
--- a/ci.py
+++ b/ci.py
@@ -4,7 +4,7 @@ import os
os.makedirs("html")
with open("html/index.html", "w") as f:
- f.write("Test page")
+ f.write("Test page 2")
with open("Dockerfile.ci.files", "w") as f:
f.write(json.dumps({
2025-05-03 10:29 Rickard pushed to gittest
commit db166118e93630904722ab1b93f793bdd05b4e63
Author: Rickard Lindberg <rickard@rickardlindberg.me>
Date: Sat May 3 10:29:18 2025 +0200
Some chanage.
diff --git a/README.md b/README.md
index 6c0d067..6220742 100644
--- a/README.md
+++ b/README.md
@@ -8,3 +8,4 @@ More
Some change.
Some change.
+Some change.
2025-05-03 10:24 Rickard pushed to gittest
commit 67cc4fcf07916d52c833885455622b3fee2ec2ec
Author: Rickard Lindberg <rickard@rickardlindberg.me>
Date: Sat May 3 10:24:11 2025 +0200
Some chanage.
diff --git a/README.md b/README.md
index 1665c33..6c0d067 100644
--- a/README.md
+++ b/README.md
@@ -7,3 +7,4 @@ Other..
More
Some change.
+Some change.
2025-05-03 10:23 Rickard pushed to gittest
commit c0b051302bf84c5269edaaefa24ba8107c44f76d
Author: Rickard Lindberg <rickard@rickardlindberg.me>
Date: Sat May 3 10:23:02 2025 +0200
Some chanage.
diff --git a/README.md b/README.md
index ca30a45..1665c33 100644
--- a/README.md
+++ b/README.md
@@ -5,3 +5,5 @@ Some change...
Other..
More
+
+Some change.
2025-05-03 10:21 Rickard pushed to gittest
commit 428ccecf46647ff844ad5f9c4631378dbf58d414
Author: Rickard Lindberg <rickard@rickardlindberg.me>
Date: Sat May 3 10:20:36 2025 +0200
Render site for testing purposes.
diff --git a/ci.py b/ci.py
index b5e4df8..5011cae 100644
--- a/ci.py
+++ b/ci.py
@@ -1,9 +1,12 @@
-import time
-import sys
-print("Looping...")
-sys.stdout.flush()
-for i in range(30):
- print(i)
- sys.stdout.flush()
- time.sleep(1)
-print("Done")
+import json
+import os
+
+os.makedirs("html")
+
+with open("html/index.html", "w") as f:
+ f.write("Test page")
+
+with open("Dockerfile.ci.files", "w") as f:
+ f.write(json.dumps({
+ "site": "html"
+ }))
commit 4f89979d85bfff53bae9aadafe26a82022d83a3c
Author: Rickard Lindberg <rickard@rickardlindberg.me>
Date: Sat May 3 07:02:15 2025 +0200
CI script.
diff --git a/Dockerfile.ci b/Dockerfile.ci
new file mode 100644
index 0000000..382deab
--- /dev/null
+++ b/Dockerfile.ci
@@ -0,0 +1,3 @@
+FROM python:3.12
+
+CMD ["python3.12", "ci.py"]
diff --git a/ci.py b/ci.py
new file mode 100644
index 0000000..b5e4df8
--- /dev/null
+++ b/ci.py
@@ -0,0 +1,9 @@
+import time
+import sys
+print("Looping...")
+sys.stdout.flush()
+for i in range(30):
+ print(i)
+ sys.stdout.flush()
+ time.sleep(1)
+print("Done")
2025-05-03 07:17 Rickard pushed to gittest
commit f00602aef642d75b3d45ab836395759e20e1b884
Author: Rickard Lindberg <rickard@rickardlindberg.me>
Date: Sat May 3 07:17:09 2025 +0200
More.
diff --git a/README.md b/README.md
index d5f407c..ca30a45 100644
--- a/README.md
+++ b/README.md
@@ -3,3 +3,5 @@ A test.
Some change...
Other..
+
+More
2025-05-03 07:17 Rickard pushed to gittest
commit 73995333fa3c44175a078eb2aad08192ca00291b
Author: Rickard Lindberg <rickard@rickardlindberg.me>
Date: Sat May 3 07:02:15 2025 +0200
CI script.
diff --git a/Dockerfile.ci b/Dockerfile.ci
new file mode 100644
index 0000000..382deab
--- /dev/null
+++ b/Dockerfile.ci
@@ -0,0 +1,3 @@
+FROM python:3.12
+
+CMD ["python3.12", "ci.py"]
diff --git a/ci.py b/ci.py
new file mode 100644
index 0000000..b5e4df8
--- /dev/null
+++ b/ci.py
@@ -0,0 +1,9 @@
+import time
+import sys
+print("Looping...")
+sys.stdout.flush()
+for i in range(30):
+ print(i)
+ sys.stdout.flush()
+ time.sleep(1)
+print("Done")
2025-05-03 07:15 Rickard pushed to gittest
commit e7107310ef8b7128d4ec2a73be291ec87fc1f2fc
Author: Rickard Lindberg <rickard@rickardlindberg.me>
Date: Sat May 3 07:14:59 2025 +0200
Other.
diff --git a/README.md b/README.md
index 528ba0c..d5f407c 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,5 @@
A test.
Some change...
+
+Other..
2025-05-03 07:15 Rickard pushed to gittest
fatal: Invalid revision range b7509540915d1aa65fb017854dba7be9df2e8b61..e9ce6e4337f18e322c0098bbfe84d5d65961aaa7