2019年4月6日
GitLabにプロジェクトを作る。
https://gitlab.com/dashboard/projectsのNew projectからProject nameを決め、Create projectする。
Pushするには
$ git config --global user.name "ユーザー名" $ git config --global user.email "メールアドレス" $ git clone https://gitlab.com/ユーザー名orチーム名/プロジェクト名.git $ touch README.md $ git add README.md $ git commit -m "add README" $ git push -u origin master
$ git add . $ git commit -m "first commit" $ git push -u origin master
$ vim .gitlab-ci.yml image: python:2.7 stages: - pages pages: stage: pages script: - pip install sphinx - pip install sphinxcontrib-blockdiag sphinxcontrib-nwdiag sphinx_rtd_theme - make html - mv build/html/ public/ artifacts: paths: - public only: - master (保存はescから:wq)
終わり
次回はGitLab Runnerの構築について