summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Remove redundant wordAchilleas Pipinellis2016-03-221-1/+1
| | | | | | | | | | | | | | | | [ci skip]
| * | | Refactor award emoji doc a bitAchilleas Pipinellis2016-03-221-4/+4
| | | | | | | | | | | | | | | | [ci skip]
| * | | Fix grammar in intro guideAchilleas Pipinellis2016-03-221-2/+2
| | | |
| * | | Merge Git basics into Start using GitAchilleas Pipinellis2016-03-223-59/+63
| | | | | | | | | | | | | | | | [ci skip]
| * | | Add award emoji docsAchilleas Pipinellis2016-03-226-1/+49
| | | | | | | | | | | | | | | | [ci skip]
| * | | Change titles to be more descriptiveAchilleas Pipinellis2016-03-221-3/+3
| | | |
| * | | Remove blockquotesAchilleas Pipinellis2016-03-211-5/+5
| | | |
| * | | Simplify install and update sectiongitlab_intro_docsAchilleas Pipinellis2016-03-191-5/+2
| | | | | | | | | | | | | | | | [ci skip]
| * | | Add h1 headingAchilleas Pipinellis2016-03-191-0/+2
| | | |
| * | | Add more options and missing linksAchilleas Pipinellis2016-03-191-10/+12
| | | | | | | | | | | | | | | | [ci skip]
| * | | Merge branch 'master' into gitlab_intro_docsAchilleas Pipinellis2016-03-1920-123/+413
| |\ \ \
| * | | | No newlines between list itemsAchilleas Pipinellis2016-03-181-23/+12
| | | | |
| * | | | First draft on GitLab intro docsAchilleas Pipinellis2016-03-151-0/+40
| | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | Merge branch 'feature-ci-only-except-trigger' into 'master' Kamil Trzciński2016-03-221-1/+12
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CI: Add 'triggers' keyword to 'only' and 'except' lists to allow control over when triggers cause builds to run Currently, the `only` and `except` keywords in `.gitlab-ci.yml` only accept ref names or the special `branches` and `tags` keywords. However, these are primarily useful when controlling how repository activity affects the creation of builds. In my case, instead of building on every commit, I'd like to use the following logic: - If the repository is tagged, do a build. - Any other normal commits should not cause a build. - If a build is triggered via the API, always create one for the specified ref. From what I can tell, this isn't possible via the existing YAML syntax. In this MR, I introduce a new keyword `triggers` that goes along with `branches` and `tags`. I can implement the logic above using the following job configuration: ```yaml only: - tags - triggers ``` I updated the tests and documentation to reflect this and everything seems to pass. See merge request !3230
| * | | | | add some documentation for `triggers` keyword [ci skip]Jason Roehm2016-03-151-1/+12
| | | | | |
* | | | | | Merge branch 'master' into issue_12658Douwe Maan2016-03-214-7/+34
|\ \ \ \ \ \ | | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # app/models/issue.rb # app/views/projects/_home_panel.html.haml # app/views/shared/projects/_project.html.haml # db/schema.rb # spec/models/project_spec.rb
| * | | | | Merge branch 'master' into 2489-soft-delete-issuesZeger-Jan van de Weg2016-03-212-2/+2
| |\ \ \ \ \
| | * | | | | Gitlab-workhorse tags have "v" nowworkhorse-0.7.1Jacob Vosmaer2016-03-212-2/+2
| | | | | | |
| | * | | | | Use gitlab-workhorse 0.7.1Jacob Vosmaer2016-03-212-2/+2
| | | |_|/ / | | |/| | |
| * | | | | Fix typos and dentingZeger-Jan van de Weg2016-03-212-3/+2
| | | | | |
| * | | | | Minor improvements on IssuableActionsZeger-Jan van de Weg2016-03-212-79/+11
| | | | | |
| * | | | | Dry destroy action on issuablesZeger-Jan van de Weg2016-03-192-2/+2
| | | | | |
| * | | | | Soft delete issuablesZeger-Jan van de Weg2016-03-192-5/+101
| |/ / / /
* | | | | Tweaks, refactoring, and specsDouwe Maan2016-03-201-0/+1
|/ / / /
* | | | Merge branch 'master' into 'master' Achilleas Pipinellis2016-03-191-0/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add information about `image` and `services` field at `job` level in the `.gitlab-ci.yml` documentation Fixes #14366 /cc @tmaczukin @ayufan @axil See merge request !3277
| * | | | fixed md anchor linkPat Turner2016-03-181-2/+2
| | | | |
| * | | | Fix for https://gitlab.com/gitlab-org/gitlab-ce/issues/14366Pat Turner2016-03-181-2/+2
| | | | |
| * | | | removed anchor as unsupported in markdownPat Turner2016-03-171-2/+2
| | | | |
| * | | | Fix for https://gitlab.com/gitlab-org/gitlab-ce/issues/14366Pat Turner2016-03-171-0/+2
| | | | |
* | | | | Add note in rest of update guidesAchilleas Pipinellis2016-03-183-0/+27
| | | | | | | | | | | | | | | | | | | | [ci skip]
* | | | | Merge branch 'master' into docs_select_version_to_installAchilleas Pipinellis2016-03-18236-1818/+7354
|\ \ \ \ \
| * \ \ \ \ Merge branch 'fix-issue-14338' into 'master' Achilleas Pipinellis2016-03-185-5/+5
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use relative links in `doc`, fix broken generated HTML links Links like (doc/web_hooks/web_hooks.md) work in the GitLab source code web interface, but the HTML generator produces broken links in the `doc` subdirectories: http://doc.gitlab.com/ce/hooks/doc/web_hooks/web_hooks.html instead of the right one http://doc.gitlab.com/ce/web_hooks/web_hooks.html in http://doc.gitlab.com/ce/hooks/custom_hooks.html. Fixes #14338 See merge request !3261
| | * | | | | Use relative links in `doc`, fix broken generated HTML linksAnatoly Borodin2016-03-175-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Links like (doc/web_hooks/web_hooks.md) work in the GitLab source code web interface, but the HTML generator produces broken links in the `doc` subdirectories: http://doc.gitlab.com/ce/hooks/doc/web_hooks/web_hooks.html instead of the right one http://doc.gitlab.com/ce/web_hooks/web_hooks.html in http://doc.gitlab.com/ce/hooks/custom_hooks.html. Fixes #14338 [ci skip] Signed-off-by: Anatoly Borodin <anatoly.borodin@gmail.com>
| * | | | | | Remove CI duplication.ci-duplicationSytse Sijbrandij2016-03-171-36/+1
| | | | | | |
| * | | | | | Bump Git version requirement to 2.7.4Douwe Maan2016-03-171-5/+5
| | |/ / / / | |/| | | |
| * | | | | Merge branch 'rm_duplicate_cache_ci_docs' into 'master' Achilleas Pipinellis2016-03-171-62/+48
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge duplicate cache entry in CI docs See merge request !3208
| | * \ \ \ \ Merge branch 'master' into rm_duplicate_cache_ci_docsAchilleas Pipinellis2016-03-179-36/+581
| | |\ \ \ \ \
| | * | | | | | Merge duplicate cache entry in CI docsrm_duplicate_cache_ci_docsAchilleas Pipinellis2016-03-141-60/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
| * | | | | | | Merge branch '4009-external-users' into 'master' Douwe Maan2016-03-173-2/+25
| |\ \ \ \ \ \ \ | | |_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | External Users The user has the rights of a public user execpt it can never create a project, group, or team. Also it cant view internal projects. Partially fix for both #4009 and #13938 (except the LDAP sync or a pattern to detect external users) ![Screen_Shot_2016-03-14_at_22.02.52](/uploads/486a84ab3acb98c6cfb71a4ec7d268e2/Screen_Shot_2016-03-14_at_22.02.52.png) See merge request !3171
| | * | | | | | Add missing API docs on external userAchilleas Pipinellis2016-03-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
| | * | | | | | Refactor external users docsAchilleas Pipinellis2016-03-171-14/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [ci skip]
| | * | | | | | Merge branch 'master' into 4009-external-users4009-external-usersZeger-Jan van de Weg2016-03-154-19/+482
| | |\ \ \ \ \ \
| | * | | | | | | Doc external users featureZeger-Jan van de Weg2016-03-153-2/+20
| | | |/ / / / / | | |/| | | | |
| * | | | | | | Merge branch 'patch-1' into 'master' Robert Schilling2016-03-171-1/+1
| |\ \ \ \ \ \ \ | | |_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix typo in README.md See merge request !3250
| | * | | | | | Fix typo in README.md.Mark Pundsack2016-03-161-1/+1
| | | | | | | |
| * | | | | | | Merge branch 'danielcarraro/gitlab-ce-feature/omniauth-auth0-gem' into 'master' Robert Speicher2016-03-162-0/+90
| |\ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | omniauth-auth0 gem support See merge request !3246
| | * | | | | | Added omniauth-auth0 Gem + Applicable Documentation.Daniel Carraro2016-03-162-0/+90
| | | | | | | |
| * | | | | | | Fix golang shasum invocationJacob Vosmaer2016-03-161-1/+1
| | | | | | | |
| * | | | | | | Update Git source installation steps to 2.7.3Jacob Vosmaer2016-03-161-2/+3
| |/ / / / / /
| * | | | | | Merge branch 'doc-updates' into 'master' Achilleas Pipinellis2016-03-162-12/+5
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix requirements.md link and improve PostgreSQL commands - Point requirements.md link to the correct location - Link to gitlab installation.md document instead of github - Use psql command switch to run specified SQL commands for creation of user and database permissions. - Instead of requiring a comment like `# Do not type the 'template1=#', this is part of the prompt` it may be easier to just use the command switch with `psql` to execute the SQL commands. *forgot [ci skip] :(* See merge request !3176