diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-06-08 20:06:18 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-06-08 20:06:18 +0300 |
| commit | c8c7a741e2a9d1bdcdedb94e0f04d9656b2f21b6 (patch) | |
| tree | ea9fe62167a0a284caa3b9f053b6048b9469d34b /toggle_repo.sh | |
| parent | a9dd7db178d806a94e76468107a72633ef4a24b3 (diff) | |
| download | dotfiles-c8c7a741e2a9d1bdcdedb94e0f04d9656b2f21b6.tar dotfiles-c8c7a741e2a9d1bdcdedb94e0f04d9656b2f21b6.tar.gz dotfiles-c8c7a741e2a9d1bdcdedb94e0f04d9656b2f21b6.zip | |
Added git toggle script and updated local desktop application files
Diffstat (limited to 'toggle_repo.sh')
| -rwxr-xr-x | toggle_repo.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/toggle_repo.sh b/toggle_repo.sh new file mode 100755 index 0000000..ffbcb57 --- /dev/null +++ b/toggle_repo.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +if [[ -d ".git" ]]; then + sudo mv .git .git.disabled +else + sudo mv .git.disabled .git +fi |
