Compare commits

14 Commits

Author SHA1 Message Date
989adb5970 zo 2025-08-04 20:35:14 +02:00
6a3d400e31 lalles 2025-08-04 20:11:47 +02:00
9009fe224e lalles 2025-08-04 19:55:43 +02:00
87d8a9d8da lalles 2025-08-04 19:54:44 +02:00
76d057ef48 lalles 2025-08-04 19:46:37 +02:00
cc43229002 lalles 2025-08-04 19:46:11 +02:00
725bd61474 lalles 2025-08-04 19:38:50 +02:00
04c72b75d1 lalles 2025-08-04 19:37:17 +02:00
bb1781500e lalles 2025-08-04 19:27:15 +02:00
216ff49d4b lalles 2025-08-04 19:26:51 +02:00
d15a984f04 lalles 2025-08-04 19:11:26 +02:00
8fe8824272 lalles 2025-08-04 19:09:34 +02:00
eb01759321 Change edition to 2024 2025-08-04 19:08:23 +02:00
8026825363 hehe 2023-03-16 19:16:14 +01:00
8 changed files with 57 additions and 1 deletions

1
.gitattributes vendored
View File

@@ -1,3 +1,4 @@
*.png filter=lfs diff=lfs merge=lfs -text
medark.jpeg filter=lfs diff=lfs merge=lfs -text
*.jpeg filter=lfs diff=lfs merge=lfs -text
soml.loml filter=lfs diff=lfs merge=lfs -text

View File

@@ -1,7 +1,7 @@
[package]
name = "test_repo"
version = "0.1.0"
edition = "2021"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

23
gitconfig Normal file
View File

@@ -0,0 +1,23 @@
[core]
hooksPath = /etc/git/hooks/
quotePath = false
commitGraph = true
logallrefupdates = true
[user]
email = gitea@fake.local
name = Gitea
[receive]
advertisePushOptions = true
procReceiveRefs = refs/for
[gc]
writeCommitGraph = true
reflogexpire = 90
[fetch]
writeCommitGraph = true
[safe]
directory = *
[uploadpack]
allowfilter = true
allowAnySHA1InWant = true
[diff]
algorithm = histogram

BIN
memiori.jp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
miosa.hp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

18
run_local_hook Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
echo "Running local hook $1 with params ${@:2}"
# Run local hook if exists
HOOK=$1
#PROJECT_ROOT=$(git rev-parse --show-toplevel)
PROJECT_ROOT=$PWD
if [ -e "$PROJECT_ROOT/hooks/$HOOK" ]; then
echo "Using local $HOOK at $PROJECT_ROOT/hooks/$HOOK in $PROJECT_ROOT"
$PROJECT_ROOT/hooks/$HOOK ${@:2}
INTERNAL_HOOK_EXIT_CODE=$?
echo "Internal hook exited with $INTERNAL_HOOK_EXIT_CODE"
exit $INTERNAL_HOOK_EXIT_CODE
else
exit 0
fi

BIN
soml.loml (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -3,4 +3,15 @@
fn main() {
println!("Hello, world!");
println!("goo");
let x = None;
let z: i32 = x.unwrap();
let z: i32 = x.unwrap();
let z: i32 = x.unwrap();
let z: i32 = x.unwrap();
let z: i32 = x.unwrap();
let z: i32 = x.unwrap();
let z: i32 = x.unwrap();
let z: i32 = x.unwrap();
let z: i32 = x.unwrap();
}