images from gitlab repo

master
parent
commit
e95859594e
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      Home.md

+ 5
- 5
Home.md

@ -25,7 +25,7 @@ First a **local git repository or local repo** is some kind supervised space in
This time, as an example smart git screen shots are going to be used, then, if you install a GUI system you will see your **working directory** like this:
![Working Directory. 1)At left: the repository name, 2)at right: the files.](images/workingDirectory.jpeg)
![Working Directory. 1)At left: the repository name, 2)at right: the files.](https://gitlab.com/gmarx_cc/gitbaseproject2research/-/raw/master/images/workingDirectory.jpeg)
then, you can see the file's status. In the example you are seeing **untracked** and **modified** files. **Untracked** means that there are new files and they are not supervised by the git system. While the **modified** ones, are files already supervised by git, and have been changed. Also you will find other status options like **rename** and **deleted**, meaning of course that those files have been renamed or deleted at the **working directory**.
@ -62,7 +62,7 @@ After this you are ready to add the new files to the **staging area**.
To **stage** a file or group of files is just the preparation to finally make a commit. Suppose you are working on two options, one is ready, and the other needs more work. Then you can stage the part that is **ok** and commit it. Thus, you need to add the file with the stage button int the GUI based git:
![Stage button.](images/stage.png)
![Stage button.](https://gitlab.com/gmarx_cc/gitbaseproject2research/-/raw/master/images/stage.png)
You have to repeat this for every file you want to add, or you can select several files at the same time.
@ -91,14 +91,14 @@ git commit -m "Changes for Readme file"
```
If you are following the GUI method, you will see a button like this:
![The commit button](images/commit1.png)
![The commit button](https://gitlab.com/gmarx_cc/gitbaseproject2research/-/raw/master/images/commit1.png)
after pressing the button you can just add the message that will be related with that version's content, as can be seen on the image you can select what files are going to be commited:
![The message to be commited](images/commit2.png)
![The message to be commited](https://gitlab.com/gmarx_cc/gitbaseproject2research/-/raw/master/images/commit2.png)
Then, when the commit button has been pressed a new dot will appear in the version line time, in this case after the initial commit:
![The ](images/commit3.png)
![The ](https://gitlab.com/gmarx_cc/gitbaseproject2research/-/raw/master/images/commit3.png)
# There is more #


Loading…
Cancel
Save