Compare commits
14 Commits
master
...
huguga-unc
| Author | SHA1 | Date | |
|---|---|---|---|
| 989adb5970 | |||
| 6a3d400e31 | |||
| 9009fe224e | |||
| 87d8a9d8da | |||
| 76d057ef48 | |||
| cc43229002 | |||
| 725bd61474 | |||
| 04c72b75d1 | |||
| bb1781500e | |||
| 216ff49d4b | |||
| d15a984f04 | |||
| 8fe8824272 | |||
| eb01759321 | |||
| 8026825363 |
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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
|
||||
|
||||
@@ -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
23
gitconfig
Normal 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
BIN
memiori.jp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 37 KiB |
18
run_local_hook
Normal file
18
run_local_hook
Normal 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
|
||||
11
src/main.rs
11
src/main.rs
@@ -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();
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user