summary refs log tree commit diff
path: root/prune.sh
blob: d41c6bc6ee05d37ecaa7de4cd598ab17a5eab5d1 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh
set -eu

find -L ~ -type l -lname "${PWD}/*" | while read -r link; do
	echo "$link"
	rm "$link"
done
cgi setupsJason A. Donenfeld 2015-08-12ui-log: fix double countingJohn Keeping 2015-08-12log: allow users to follow a fileJohn Keeping 2015-08-12shared: make cgit_diff_tree_cb publicJohn Keeping 2015-08-12t0110: Chain together using &&Jason A. Donenfeld 2015-08-12about: always ensure page has a trailing slashJason A. Donenfeld 2015-08-12filters: apply HTML escapingLazaros Koromilas 2015-08-12git: update to v2.5.0Christian Hesse 2015-08-12Fix processing of repo.hide and repo.ignoreDaniel Reichelt