Merge branch 'creategroup' into 'master'
New document about creating a project Added new document to GitLab Basics about creating a project See merge request !1885
This commit is contained in:
commit
8ba83cbab8
5 changed files with 29 additions and 4 deletions
|
@ -9,3 +9,5 @@ Step-by-step guides on the basics of working with Git and GitLab.
|
|||
* [Command Line basic commands](command-line-commands.md)
|
||||
|
||||
* [Basic Git commands](basic-git-commands.md)
|
||||
|
||||
* [Create a project](create-project.md)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## Start working on your project
|
||||
|
||||
* In Git, when you copy a project you say you "clone" it. To work on a git project locally (from your own computer), you will need to clone it. To do this, start by signing in at GitLab.com.. To do it, go to your [gitlab.com](https://gitlab.com) account
|
||||
* In Git, when you copy a project you say you "clone" it. To work on a git project locally (from your own computer), you will need to clone it. To do this, start by signing in at GitLab.com.. To do it, go to your [GitLab.com](https://gitlab.com) account
|
||||
|
||||
* When you are on your Dashboard, click on the project that you'd like to clone, which you'll find at the right side of your screen
|
||||
|
||||
|
|
23
doc/gitlab-basics/create-project.md
Normal file
23
doc/gitlab-basics/create-project.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# How to create a project in GitLab
|
||||
|
||||
## Create a project
|
||||
|
||||
* Sign in to [GitLab.com](https://gitlab.com)
|
||||
|
||||
* Go to your Dashboard and click on "new project" on the right side of your screen
|
||||
|
||||
![Create a project](basicsimages/new_project.png)
|
||||
|
||||
* Fill out the required information
|
||||
|
||||
1. Project path or the name of your project (you can't add spaces, so you can use hyphens or underscores)
|
||||
|
||||
1. Your project's description
|
||||
|
||||
1. Select a [visibility level](https://gitlab.com/help/public_access/public_access)
|
||||
|
||||
1. You can also [import your existing projects](http://doc.gitlab.com/ce/workflow/importing/README.html)
|
||||
|
||||
1. Click on "create project"
|
||||
|
||||
!![Project information](basicsimages/project_info.png)
|
|
@ -6,7 +6,7 @@ You need to connect your computer to your GitLab account through SSH Keys. They
|
|||
|
||||
* Create an account on GitLab. Sign up and check your email for your confirmation link
|
||||
|
||||
* After you confirm, go to [gitlab.com](https://about.gitlab.com/) and sign in to your account
|
||||
* After you confirm, go to [GitLab.com](https://about.gitlab.com/) and sign in to your account
|
||||
|
||||
## Add your SSH Key
|
||||
|
||||
|
@ -28,7 +28,7 @@ You need to connect your computer to your GitLab account through SSH Keys. They
|
|||
|
||||
## To generate an SSH Key on your commandline
|
||||
|
||||
* Go to your [commandline](start-using-git.md) and follow the [instructions](https://gitlab.com/help/ssh/README) to generate it
|
||||
* Go to your [commandline](start-using-git.md) and follow the [instructions](https://gitlab.com/help/ssh/README) to generate it
|
||||
|
||||
* Copy the SSH Key that your commandline created and paste it on the "Key" box on the GitLab page. The title will be added automatically
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Start using Git on the commandline
|
||||
|
||||
If you want to start using a Git and GitLab, make sure that you have created an account on [gitlab.com](https://about.gitlab.com/)
|
||||
If you want to start using a Git and GitLab, make sure that you have created an account on [GitLab.com](https://about.gitlab.com/)
|
||||
|
||||
## Open a shell
|
||||
|
||||
|
|
Loading…
Reference in a new issue