http://server-name/xxx/yyy/bundle-name.git
git clone http://server-name/xxx/yyy/bundle-name.git
$ git init -b master
$ git config user.name "Your Name"
$ git config user.email [email protected]
$ git add .
$ git commit -m "Initial commit"
https://github.com/xxx/yyy.git
or https://gitlab.com/xxx/yyy.git
$ git remote add origin https://xxx/yyy/repo-name.git
$ git remote -v
origin https://xxx/yyy/repo-name.git (fetch)
origin https://xxx/yyy/repo-name.git (push)
$ git push origin master
(if not authenticated Git ask for user & password)