| ... | @@ -61,12 +61,30 @@ |
... | @@ -61,12 +61,30 @@ |
|
|

|
|

|
|
|

|
|

|
|
|
|
|
|
|
|
|
- Next we need to initialize folder for git
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
$ git init
|
|
|
|
```
|
|
|
|
|
|
|
|
|
- Lets add remote server so we can push it to right place
|
|
|
|
- We need to take from address from project's Gitlab repository
|
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
|
- Now we add it to Git Bash by following command
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
# git remote add origin (your address, paste it LSHIFT + INS)
|
|
|
|
$ git remote add origin https://gitlab.labranet.jamk.fi/K1647/CI-testing.git
|
|
|
|
```
|
|
|
|
- Next we want to add all files for push and comment the commit by some message
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
$ git add -A
|
|
|
|
$ git commit -m "the first push to gitlab"
|
|
|
|
$ git push origin master
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| ... | |
... | |
| ... | | ... | |