-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.txt
29 lines (25 loc) · 842 Bytes
/
test.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
git komendy
updatowanie plikow schemat:
git diff // pokazuje roznice pomiedzy plikami
git status
git commit -m "Message" plik // lokalny update
teraz pushujemy
git pull origin master // ważne jak pracuje się w grupie
git push origin master // master to branch do której pushujemy
branchowanie
git branch //wyswietla branche
git branch branch_name // dodawanie nowego brancha
git checkout branch_name // przechodzenie do danego brancha
dodajemy tak jak poprzednio, add, commit a przy pushu:
git push -u origin branch_name
mergowanie branchy
git checkout master
git pull origin master
git branch --merged //pokazuje połšczone branche
git merge branch_name //nazwa tej którš chcemy podłšczyć
git push origin master
usuwanie brancha
git branch --merged
git branch -d branch_name
git branch -a
git push origin --delete branch_name