gitlab

Visual Studio 2013 Git Version Control - SSH Key

非 Y 不嫁゛ 提交于 2019-12-21 11:36:26
问题 I'm very excited that VS 2013 includes built in support for Git, but I'm having some trouble getting it to work correctly. I have authentication set up to my own private installation of Gitlab using an SSH key, but I don't see anywhere in Visual Studio 2013 to specify this SSH key. I also had to put in the global Git settings (name and e-mail) in the IDE, which means it's not actually pulling that information from the global settings I've already set up. Does anybody have any experience with

Visual Studio 2013 Git Version Control - SSH Key

只愿长相守 提交于 2019-12-21 11:36:22
问题 I'm very excited that VS 2013 includes built in support for Git, but I'm having some trouble getting it to work correctly. I have authentication set up to my own private installation of Gitlab using an SSH key, but I don't see anywhere in Visual Studio 2013 to specify this SSH key. I also had to put in the global Git settings (name and e-mail) in the IDE, which means it's not actually pulling that information from the global settings I've already set up. Does anybody have any experience with

GitLab Pages, docs generated with sphinx

萝らか妹 提交于 2019-12-21 10:15:50
问题 I want to host static page generated with Sphinx on GitLab Pages. Built index.html file is in: project/docs/build/html How .gitlab-ci.yml should look like to deploy the page? I have something like that and it isn't working: pages: stage: deploy script: - echo 'Nothing to do...' artifacts: paths: - docs/build/html only: - master 回答1: According to the documentation for .gitlab-ci.yml, the pages job has special rules it must follow: Any static content must be placed under a public/ directory

Where can I manage files uploaded to wiki of a Gitlab.com project?

时光怂恿深爱的人放手 提交于 2019-12-21 09:08:36
问题 I have uploaded some files to my Gitlab repository on "gitlab.com" while creating wiki for my private project. Now my questions are: Can I see list of the uploaded files? Is there any way to remove some of them? Why permission of uploaded file is public? Can I change it to private? Current version of gitlab is Enterprise Edition 8.9.4-ee. 回答1: Attached files trough the wiki editor are uploaded to /uploads/ . As of GitLab version 8.9.0 you are unable to manage these files (i.e. deleting them).

Where can I manage files uploaded to wiki of a Gitlab.com project?

馋奶兔 提交于 2019-12-21 09:08:03
问题 I have uploaded some files to my Gitlab repository on "gitlab.com" while creating wiki for my private project. Now my questions are: Can I see list of the uploaded files? Is there any way to remove some of them? Why permission of uploaded file is public? Can I change it to private? Current version of gitlab is Enterprise Edition 8.9.4-ee. 回答1: Attached files trough the wiki editor are uploaded to /uploads/ . As of GitLab version 8.9.0 you are unable to manage these files (i.e. deleting them).

test after build would run in new environment on gitlab-ci

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-21 07:32:19
问题 I have the following configuration as .gitlab-ci.yml but I found out after successfully pass build stage (which would create a virtualenv called venv), it seems that in test stage you would get a brand new environment(there's no venv directory at all). So I wonder should I put setup script in before_script therefor it would run in each phase(build/test/deploy). Is it a right way to do it ? before_script: - uname -r types: - build - test - deploy job_install: type: build script: - apt-get

Gitlab and HTML documentation

别等时光非礼了梦想. 提交于 2019-12-21 07:30:14
问题 My development environment consists of Git repository, GitLab repository manager and Jenkins. During build process a documentation is generated with Doxygen in HTML format. Is it possible to store that documentation on GitLab project's wiki? I know that HTML is not supported in Gollum, which is the Gitlab's wiki engine. Converting HTML to Markdown is not satisfactory because of internal links in HTML files that point to other HTML files. Should I store documentation in a separate wiki instead

Gitlab and HTML documentation

半腔热情 提交于 2019-12-21 07:30:05
问题 My development environment consists of Git repository, GitLab repository manager and Jenkins. During build process a documentation is generated with Doxygen in HTML format. Is it possible to store that documentation on GitLab project's wiki? I know that HTML is not supported in Gollum, which is the Gitlab's wiki engine. Converting HTML to Markdown is not satisfactory because of internal links in HTML files that point to other HTML files. Should I store documentation in a separate wiki instead

GitLab CI invalid argument on job for Docker build

心已入冬 提交于 2019-12-21 05:27:13
问题 So I'm trying to setup my Gitlab CI to trigger a job on git push to build and deploy my Docker. This is the .gitlab-ci.yml file I'm using based on an example from Gitlab docs (Elixir yml). stages: - build build: before_script: - docker build -f Dockerfile.build -t ci-project-build-$CI_PROJECT_ID:$CI_BUILD_REF . - docker create -v /build/deps -v /build/_build -v /build/rel -v /root/.cache/aceapp/ --name build_data_$CI_PROJECT_ID_$CI_BUILD_REF busybox /bin/true tags: - docker stage: build

Gitlab Wiki same page links [closed]

丶灬走出姿态 提交于 2019-12-21 04:34:09
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . How do I use same page links in the Gitlab wiki? For example: Contents - heading1 ---> this should move the page to heading 1 - heading2 - heading3 - heading4 HEADING 1 Basically I am trying to create a page like Wikipedia where you can navigate a single page using a table of contents. 回答1: This has been added