Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
550ac52b
Commit
550ac52b
authored
Jun 13, 2019
by
Patrick Bajao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add documentation for feature and API
parent
13ab6a38
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
114 additions
and
0 deletions
+114
-0
doc/api/project_aliases.md
doc/api/project_aliases.md
+101
-0
doc/user/project/index.md
doc/user/project/index.md
+13
-0
No files found.
doc/api/project_aliases.md
0 → 100644
View file @
550ac52b
# Project Aliases API
All methods require administrator authorization.
## List all project aliases
Get a list of all project aliases
```
GET /project_aliases
```
```
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/project_aliases"
```
Example response:
```
json
[
{
"id"
:
1
,
"project_id"
:
1
,
"name"
:
"gitlab-ce"
},
{
"id"
:
2
,
"project_id"
:
2
,
"name"
:
"gitlab-ee"
}
]
```
## Get project alias' details
Get details of a project alias
```
GET /project_aliases/:name
```
| Attribute | Type | Required | Description |
|-----------|--------|----------|-----------------------|
|
`name`
| string | yes | The name of the alias |
```
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/project_aliases/gitlab-ee"
```
Example response:
```
json
{
"id"
:
1
,
"project_id"
:
1
,
"name"
:
"gitlab-ee"
}
```
## Create an alias for a project
Add a new alias for a project. Reponds with a 201 when successful, 400 when there are validation errors (e.g. alias already exists).
```
POST /project_aliases
```
| Attribute | Type | Required | Description |
|--------------|--------|----------|-----------------------------------------------|
|
`project_id`
| string | yes | The The ID or URL-encoded path of the project |
|
`name`
| string | yes | The name of the alias. Must be unique. |
```
curl --request POST "https://gitlab.example.com/api/v4/project_aliases" --form "project_id=gitlab-org%2Fgitlab-ee" --form "name=gitlab-ee"
```
Example response:
```
json
{
"id"
:
1
,
"project_id"
:
1
,
"name"
:
"gitlab-ee"
}
```
## Delete a project aliase
Removes a project aliases. Respond with a 204 when project alias exists, 404 when it doesn't.
```
DELETE /project_aliases/:name
```
| Attribute | Type | Required | Description |
|-----------|--------|----------|-----------------------|
|
`name`
| string | yes | The name of the alias |
```
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/project_aliases/gitlab-ee"
```
doc/user/project/index.md
View file @
550ac52b
...
...
@@ -193,6 +193,18 @@ password <personal_access_token>
To quickly access a project from the GitLab UI using the project ID,
visit the
`/projects/:id`
URL in your browser or other tool accessing the project.
## Project aliases
Projects' repositories are usually cloned with a namespace and project name. It is
also possible to clone them via a project alias. This feature is only available on Git over SSH.
A project alias can be created via API only by administrators. Follow the
[
Project Aliases API documentation
](
../../api/project_aliases.md
)
for more details.
Once an alias has been created for a project (e.g. gitlab-ce for gitlab-org/gitlab-ce),
the repository can be cloned using the alias (e.g
`git clone git@gitlab.com:gitlab-ce.git`
instead of
`git clone git@gitlab.com:gitlab-org/gitlab-ce.git`
).
## Project APIs
There are numerous
[
APIs
](
../../api/README.md
)
to use with your projects:
...
...
@@ -212,3 +224,4 @@ There are numerous [APIs](../../api/README.md) to use with your projects:
-
[
Templates
](
../../api/project_templates.md
)
-
[
Traffic
](
../../api/project_statistics.md
)
-
[
Variables
](
../../api/project_level_variables.md
)
-
[
Aliases
](
../../api/project_aliases.md
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment