tangled
alpha
login
or
join now
vielle.dev
/
tangled-on-commit
Listen to git commits for a specific repo and run a shell command
5
fork
atom
overview
issues
pulls
pipelines
Initial commit
vielle.dev
4 months ago
43aa3ae8
options
unified
split
Changed files
+19
.gitignore
Cargo.lock
Cargo.toml
src
main.rs
+1
.gitignore
···
1
1
+
/target
+7
Cargo.lock
···
1
1
+
# This file is automatically @generated by Cargo.
2
2
+
# It is not intended for manual editing.
3
3
+
version = 4
4
4
+
5
5
+
[[package]]
6
6
+
name = "tangled-on-commit"
7
7
+
version = "0.1.0"
+6
Cargo.toml
···
1
1
+
[package]
2
2
+
name = "tangled-on-commit"
3
3
+
version = "0.1.0"
4
4
+
edition = "2024"
5
5
+
6
6
+
[dependencies]
+5
src/main.rs
···
1
1
+
fn main() -> Result<(), i32> {
2
2
+
println!("Hello, world!");
3
3
+
4
4
+
return Ok(())
5
5
+
}