git clone https://git.overleaf.com/5f167a3c75865800010eac17 movilidad

git remote -v
# origin    https://git.overleaf.com/5f167a3c75865800010eac17 (fetch)
# origin    https://git.overleaf.com/5f167a3c75865800010eac17 (push)

git remote add gitlab git@gitlab.com:iple-iot/movilidad/prototipo-docs.git
git remote set-url origin --add --push https://git.overleaf.com/5f167a3c75865800010eac17
git remote set-url origin --add --push git@gitlab.com:iple-iot/movilidad/prototipo-docs.git

git remote -v

# origin    https://git.overleaf.com/60215c72accce34f7f5f890c (fetch)
# origin    https://git.overleaf.com/60215c72accce34f7f5f890c (push)

git remote set-url origin --add --push https://git.overleaf.com/60215c72accce34f7f5f890c
git remote set-url origin --add --push git@gitlab.com:lancs-dsne/ismt-challenges.git
git push
    push local changes (after git commit) to GitLab and Overleaf simultaneously
git push gitlab
    push local changes to only GitLab
git push origin
    push local changes to only Overleaf
git pull
git remote add origin git@gitlab.com:ErickChacon/erickchacon.gitlab.io.git

git remote add github https://github.com/user/repo.git

git remote set-url –add origin https://github.com/user/repo.git
git init
git remote add origin git@gitlab.com:ErickChacon/erickchacon.gitlab.io.git
git add .
git commit -m "Initial commit"
git push -u origin master