Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

před 7 roky
před 7 roky
před 7 roky
1234567891011121314151617181920212223242526272829
  1. #!/bin/bash
  2. set -e
  3. if [ ! -f README.md ]; then
  4. echo "You seems to be in the wrong directory"
  5. echo "Execute this script from the root of LessPass with ./scripts/${0##*/}"
  6. exit 1
  7. fi
  8. function dev {
  9. git remote add "$1_origin" "git@github.com:lesspass/$1.git"
  10. git remote -v
  11. git fetch "$1_origin"
  12. git merge -s ours --no-commit --allow-unrelated-histories "$1_origin/master"
  13. git rm --cached "$1"
  14. sed -i '/$1/d' .gitmodules
  15. rm -rf "$1_origin/.git"
  16. git add "$1"
  17. git commit -m "[Mono repo] Add submodule $1"
  18. git remote rm "$1_origin"
  19. }
  20. submodules="backend cli cordova core cozy desktop frontend move nginx openssl pure render-password snap webextension"
  21. for submodule in ${submodules}
  22. do
  23. dev ${submodule}
  24. done