diff options
Diffstat (limited to 'setup.sh')
| -rwxr-xr-x | setup.sh | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,9 @@ # Setup documents repo if [ -d "docs/Documents/.git" ]; then - cd docs/Documents && git pull origin main && cd - + cd docs/Documents + git fetch origin main + git reset --hard origin/main + cd - else git clone https://github.com/JustEnoughVCS/Documents.git docs/Documents fi |
