13 lines
290 B
Bash
Executable File
13 lines
290 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Make all files shown
|
|
yadm gitconfig --unset status.showUntrackedFiles
|
|
|
|
# intialize submodules
|
|
cd "$HOME"
|
|
yadm submodule update --recursive --init
|
|
|
|
# switch to ssh for repo
|
|
echo "Updating the yadm repo origin URL"
|
|
yadm remote set-url origin "git@potokar.us:easton/dotfiles.git"
|