add more git steps in README
This commit is contained in:
24
README.md
24
README.md
@@ -9,6 +9,30 @@ test port ssh
|
|||||||
` 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 ctr+X
|
||||||
|
6. check git tracking
|
||||||
|
` git status `
|
||||||
|
7. add and commit the change in the git
|
||||||
|
` git add README `
|
||||||
|
` git commit -m 'change README`
|
||||||
|
8. check the commit was registered
|
||||||
|
` git log `
|
||||||
|
` git show <commit-id> `
|
||||||
|
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 ` or ` git pull `
|
||||||
|
` git checkout prenom-nom `
|
||||||
|
` git rebase main . `
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## content
|
## content
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user