-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxuletagit.txt
40 lines (23 loc) · 1.09 KB
/
xuletagit.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
## Canviar branca (master, main, gh-pages)
git checkout gh-pages
git checkout master
git checkout main
## Comprovar si estan els fitxers pujats
git status
## Afegir el fitxer que esta en roig
git add "NOM_DEL_FITXER"
## Afegir tots els fitxers
git add .
## COMMIT (Fer-lo sempre despres de fer un add, si no no es guardaran els canvis al github)
git commit -m "COMENTARI"
## --------------------------------------------------------------------------------------------------------- ##
##--------- BRANCA MAIN ---------##
## PUJAR CANVIS BRANCA MAIN(Si canvio la carpeta localment s'ha de realitzar un push per aplicar els canvis al github)
git push -u origin main
## BAIXAR CANVIS (si algu canvia el repositori al github, puc actualitzar amb la següent comanda:)
git pull origin main
##--------- BRANCA GH-PAGES ---------##
## PUJAR CANVIS BRANCA GH-PAGES(Si canvio la carpeta localment s'ha de realitzar un push per aplicar els canvis al github)
git push -u origin gh-pages
## BAIXAR CANVIS (si algú canvia el repositori al github, puc actualitzar amb la següent comanda:)
git pull origin gh-pages