Compare commits
5 Commits
theresa-te
...
eliott-den
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
72405e16f5 | ||
| 621bdc3a2d | |||
|
|
23091bd7ff | ||
|
|
5d5d48e13e | ||
|
|
d17efbb2f2 |
45
README.md
45
README.md
@@ -1,4 +1,4 @@
|
|||||||
# git repo for art num
|
git statu# git repo for art num
|
||||||
|
|
||||||
*the wiki will be updated with more information and usefull snipet. fell free to contribute*
|
*the wiki will be updated with more information and usefull snipet. fell free to contribute*
|
||||||
|
|
||||||
@@ -6,9 +6,48 @@ test port ssh
|
|||||||
|
|
||||||
## how to
|
## how to
|
||||||
1. clone this repo to you own computer
|
1. clone this repo to you own computer
|
||||||
` git clone https://git.erg.school/P039/art_num_2024.git`
|
```
|
||||||
|
git clone https://git.erg.school/P039/art_num_2024.git
|
||||||
|
```
|
||||||
2. check before eatch courses for update
|
2. check before eatch courses for update
|
||||||
` git pull `
|
```
|
||||||
|
git pull
|
||||||
|
```
|
||||||
|
3. create your own branch
|
||||||
|
```
|
||||||
|
git checkout -b prenom-nom
|
||||||
|
```
|
||||||
|
4. create and update README with your name
|
||||||
|
```
|
||||||
|
nano README
|
||||||
|
```
|
||||||
|
5. save the file with `ctrl+X`
|
||||||
|
6. check git tracking
|
||||||
|
```
|
||||||
|
git status
|
||||||
|
```
|
||||||
|
7. add and commit the change in the git
|
||||||
|
```
|
||||||
|
git add README.md
|
||||||
|
git commit -m 'change README'
|
||||||
|
```
|
||||||
|
8. check the commit was registered
|
||||||
|
```
|
||||||
|
git log
|
||||||
|
git show <commit-hash>
|
||||||
|
```
|
||||||
|
9. push your branch on gitea
|
||||||
|
```
|
||||||
|
git push origin prenom-nom
|
||||||
|
```
|
||||||
|
10. update your branch with latest main branch
|
||||||
|
```
|
||||||
|
git checkout main
|
||||||
|
git pull origin main
|
||||||
|
git checkout prenom-nom
|
||||||
|
git rebase main
|
||||||
|
git log
|
||||||
|
```
|
||||||
|
|
||||||
## content
|
## content
|
||||||
|
|
||||||
|
|||||||
0
ThisIsANewFile.txt
Normal file
0
ThisIsANewFile.txt
Normal file
@@ -1 +0,0 @@
|
|||||||
print('hello git')
|
|
||||||
Reference in New Issue
Block a user