Compare commits

...

4 Commits

Author SHA1 Message Date
Felix Van der Jeugt ff4b21e32c
add subgit commit message ufora export 2022-01-04 00:34:29 +01:00
Felix Van der Jeugt bd70900035
ignore cbor userstate 2022-01-04 00:30:26 +01:00
Felix Van der Jeugt fe7c60c10f
ignore temporary setting files for transmission 2022-01-04 00:29:29 +01:00
Felix Van der Jeugt a746b70457
ignore mpv watch later list 2022-01-04 00:28:34 +01:00
4 changed files with 12 additions and 0 deletions

1
config/mpv/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
watch_later

View File

@ -1,2 +1,3 @@
credentials.toml
userstate.toml
userstate.cbor

View File

@ -2,3 +2,4 @@ dht.dat
resume
stats.json
torrents
settings.json.tmp.*

9
local/bin/subgit-export Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
printf 'OrgDefinedId,%s Text Grade,End-of-Line Indicator\n' "${1:-Commit}"
for d in 0*; do
cd "$d"
printf "#%s,%s,#\n" "$d" "$(git log --oneline | head -1 | tr -d ',')"
cd ..
done