Update 'Guide'
parent
ece0e491be
commit
9ba28059ca
14
Guide.md
14
Guide.md
@ -1,23 +1,29 @@
|
|||||||
|
- Goto your project folder
|
||||||
```bash
|
```bash
|
||||||
cd your-project
|
cd your-project
|
||||||
```
|
```
|
||||||
|
|
||||||
|
- Init your git project
|
||||||
```bash
|
```bash
|
||||||
git init
|
git init
|
||||||
```
|
```
|
||||||
|
|
||||||
|
- Add changes for your project (all files)
|
||||||
```bash
|
```bash
|
||||||
git add .
|
git add .
|
||||||
```
|
```
|
||||||
|
|
||||||
|
- Commit your changes
|
||||||
```bash
|
```bash
|
||||||
git commit -m "my message for my actions"
|
git commit -m "my message for my actions"
|
||||||
```
|
```
|
||||||
|
|
||||||
```bash
|
- If you don't have remote yet for your project
|
||||||
git push -u origin master
|
|
||||||
```
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git remote add origin https://git.cubetiqs.com/yourname/your-project.git
|
git remote add origin https://git.cubetiqs.com/yourname/your-project.git
|
||||||
```
|
```
|
||||||
|
|
||||||
|
- Push your changes
|
||||||
|
```bash
|
||||||
|
git push -u origin master
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user