mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-01-19 15:06:39 +00:00
fddff5a696
Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.eu.org>
9 lines
No EOL
309 B
Bash
Executable file
9 lines
No EOL
309 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
if [ ! -d "$HOME/.git" ]; then
|
|
echo "Symlinking ~/.git to ~/.local/share/yadm/repo.git for compatibility"
|
|
ln -s ~/.local/share/yadm/repo.git ~/.git
|
|
fi
|
|
|
|
git remote set-url origin ssh://git@mau.dev/andreijiroh.dev/dotfiles
|
|
git remote add hut ssh://git@git.sr.ht/~ajhalili2006/dotfiles |