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
0
Merge Requests
0
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
Tatuya Kamada
gitlab-ce
Commits
1758dcb6
Commit
1758dcb6
authored
Aug 14, 2016
by
Flavio Poletti
Committed by
Achilleas Pipinellis
Jan 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify wording in "adding an image" docs
parent
c02f0808
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
28 deletions
+22
-28
doc/gitlab-basics/add-image.md
doc/gitlab-basics/add-image.md
+22
-28
No files found.
doc/gitlab-basics/add-image.md
View file @
1758dcb6
# How to add an image
The following are the steps to add images to your repository in
GitLab:
Using your standard tool for copying files (e.g. Finder in Mac OS, or Explorer
in Windows, or...), put the image file into the GitLab project. You can find the
project as a regular folder in your files.
Find the image that you’d like to add.
Go to your
[
shell
](
command-line-commands.md
)
, and move into the folder of your
Gitlab project. This usually means running the following command until you get
to the desired destination:
In your computer files, find the GitLab project to which you'd like to add the image
(you'll find it as a regular file). Click on every file until you find exactly where you'd
like to add the image. There, paste the image.
Go to your
[
shell
](
command-line-commands.md
)
, and add the following commands:
Add this command for every directory that you'd like to open:
```
cd NAME-OF-F
ILE
-YOU'D-LIKE-TO-OPEN
cd NAME-OF-F
OLDER
-YOU'D-LIKE-TO-OPEN
```
Create a new branch:
```
git checkout -b NAME-OF-BRANCH
```
Check if your image is actually present in the directory (if you are in Windows,
use
`dir`
instead):
Check if your image was correctly added to the directory:
```
ls
```
You should see the name of the image in the list shown.
Move up the hierarchy through directories:
```
cd ../
```
Check the status:
Check the status and you should see your image’s name in red:
```
git status
```
Add your changes:
Your image's name should appear in red, so
`git`
took notice of it! Now add it
to the repository:
```
git add NAME-OF-YOUR-IMAGE
```
Check the status and you should see your image’s name in green:
Check the status again, your image's name should have turned green:
```
git status
```
Add the commit:
Commit:
```
git commit -m
“DESCRIBE COMMIT IN A FEW WORDS”
git commit -m
"DESCRIBE COMMIT IN A FEW WORDS"
```
Now you can push (send) your changes (in the branch NAME-OF-BRANCH) to GitLab (the git remote named 'origin'):
Now you can push (send) your changes (in the branch NAME-OF-BRANCH) to GitLab
(the git remote named 'origin'):
```
git push origin NAME-OF-BRANCH
```
Your image will be added to your branch in your repository in GitLab. Create a
[
Merge Request
](
add-merge-request.md
)
to integrate your changes to your project.
Your image will be added to your branch in your repository in GitLab.
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