added Fork Project document

This commit is contained in:
karen Carias 2015-07-21 15:45:12 -07:00
parent 2c4210f538
commit 42130a97e9
3 changed files with 23 additions and 1 deletions

View File

@ -15,3 +15,5 @@ Step-by-step guides on the basics of working with Git and GitLab.
* [Create a group](create-group.md)
* [Create a branch](create-branch.md)
* [Fork a project](fork-project.md)

View File

@ -1,6 +1,7 @@
# How to create a branch
A branch is an independent line of development.
New commits are recorded in the history for the current branch, which results in taking the source from someones repository (the place where the history of your work is stored) at certain point in time, and apply your own changes to it in the history of the project.
To add changes to your GitLab project, you should create a branch. You can do it in your [shell](basic-git-commands.md) or in GitLab.
@ -32,7 +33,7 @@ Fill out the information required:
![Branch info](basicsimages/branch_info.png)
### Note:
You will be able to find and select the name of your branch in the white box next to a project's name:
![Branch name](basicsimages/branch_name.png)

View File

@ -0,0 +1,19 @@
# How to fork a project
A fork is a copy of an original repository that you can put somewhere else
or where you can experiment and apply changes that you can later decide if
publishing or not, without affecting your original project.
It takes just a few steps to fork a project in GitLab.
Sign in to [gitlab.com](https://gitlab.com).
Select a project on the right side of your screen:
![Select a project](basicsimages/select_project.png)
Click on the "fork" button on the right side of your screen:
![Fork](simple_guide_images/fork.png)
Click on the user or group to where you'd like to add the forked project.