Git workflow
- git clone / git pull
- git checkout -b feature/name
- //codding
- git add -A
- git commit -m „added code to page.php”
- git checkout master
- git pull
- git checkout feature/name
- git rebase -i master
- edyor vi :wq
- git push / git push –set-upstream origin feature/name
- git Merge Request
- zatwierdzenie MR
- git checkout master
- git pull
- git checkout -b feature/name2
- //coding
zmiany w .gitignore
- git rm -r –cached .
- git add .
- git commit -m”Refresh git cache and gitignore”
konflikt z main.css przy checkout z master na feature/name
- git stash
konflikt przy rebase
- rozwiązanie konfliktów w edytorze
- git add -A
- git rebase –continue
- git rebase –abort // anulowanie
usunięcie wszystkich branch’ów poza master
- $git branch (grep -v „master” | xargs
- git branch -D
Hope this helps and happy coding :)
Zobacz jeszcze
Wykluczenie własnego adresu IP ze statystyk w Google Analytics
Aby wykluczyć własny adresu IP ze statystyk w Google Analytics należy ustawić odpowiedzialny za to filtr. wchodzimy we Wszystkie dane witryny z menu po lewej strony wybieramy...
Google Analytics
Przekierowanie z index.html na stronę główną
Przekierowanie ze strony naszadomena.com/index.html na stronę główną dokonujemy w pliku .htaccess regułą umieszczoną przed # BEGIN WordPress RewriteRule ^index\.html$ /...