diff options
-rwxr-xr-x | sh/upd | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -43,6 +43,10 @@ backup () { *) git push;; esac done + # always go back to a specific branch, because future new branshes may + # make previous git checkout checkout to that new branch cause rsync + # have to sync that new branch instead + git checkout master # git checkout will change mtime, need to change back so rsync won't think it needs to backup these files # https://stackoverflow.com/q/1964470/9008720 # https://stackoverflow.com/q/21735435/9008720 |