To Do
Rough notes
In conformance with the naming conventions used with Jenkins, names onn the GitLab server (http://test1-gitlab.datamigrators.io/) are
Repository - wwi_gitlab_ds117_ds117 (same as project)
Pipeline - wwi_gitlab_ds117
Hazy if this naming works out, we will see
This page in admin area is how to create new project
http://test1-gitlab.datamigrators.io/projects/new
Project is here http://test1-gitlab.datamigrators.io/lar/wwi_gitlab_ds117_ds117
after creating it reminds we might need a key http://test1-gitlab.datamigrators.io/profile/keys
This page goes into gory detail http://test1-gitlab.datamigrators.io/projects/new
also can use this cmd from (somewhere)?
git push --set-upstream git@ec2-3-94-105-174.compute-1.amazonaws.com:lar/$(git rev-parse --show-toplevel | xargs basename).git $(git rev-parse --abbrev-ref HEAD)
after creating it, clone it on a machine where you can seed it
git@ec2-3-94-105-174.compute-1.amazonaws.com:lar/wwi_gitlab_ds117_ds117.git or http://ec2-3-94-105-174.compute-1.amazonaws.com/lar/wwi_gitlab_ds117_ds117.git
I need to do this setup
Git global setup
git config --global user.name "Larry Pieniazek" git config --global user.email "larry.pieniazek@datamigrators.com"
Create a new repository
git clone http://ec2-3-94-105-174.compute-1.amazonaws.com/lar/wwi_gitlab_ds117_ds117.git cd wwi_gitlab_ds117_ds117 touch README.md git add README.md git commit -m "add README" git push -u origin master