Compare commits
4 Commits
078a6240e4
...
7a0370b6be
Author | SHA1 | Date | |
---|---|---|---|
7a0370b6be | |||
3aacf3a985 | |||
2f5ff4c28c | |||
cfa02b7d98 |
@ -34,7 +34,7 @@ PATTERNS=(
|
||||
|
||||
# To remove
|
||||
RM=(
|
||||
yast2-* nautilus-share nautilus-sendto gnome-console MozillaFirefox-branding-openSUSE
|
||||
yast2-* nautilus-share nautilus-sendto gnome-console MozillaFirefox-branding-openSUSE opensuse-welcome
|
||||
)
|
||||
|
||||
# To remove (and prevent reinstallation of)
|
||||
@ -564,9 +564,13 @@ if [ ! -d ${PROJECTS_DIR} ]; then
|
||||
gio set ${PROJECTS_DIR} metadata::custom-icon-name folder-code
|
||||
fi
|
||||
|
||||
# Configure git
|
||||
git config --global user.name "Jessie Hildebrandt"
|
||||
git config --global user.email "jessieh@jessieh.net"
|
||||
|
||||
# Perform a blobless clone of all public repos at git.tty.dog
|
||||
API_URL="https://git.tty.dog/api/v1/repos/search"
|
||||
for CLONE_URL in $(curl -s "${API_URL}?uid=1" | jq -r ".data.[].clone_url"); do
|
||||
for CLONE_URL in $(curl -s "${API_URL}?uid=1" | jq -r ".data.[].ssh_url"); do
|
||||
git -C ${PROJECTS_DIR} clone --no-checkout --filter=blob:none "${CLONE_URL}"
|
||||
done
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user