=== Uaktualnianie gałęzi z repozytorium ===
git pull
=== Wysyłanie gałęzi do repozytorium ===
git push
=== Nowa gałąź na zdalne repozytorium ===
git push -u origin localBranch:remoteBranchToBeCreated
=== Pobranie nowej gałęzi z repozytorium ===
git fetch origin nazwa_zdalnej_branch
=== Zmiana zdalnego repozytorium ===
git remote set-url origin new.git.url/here
=== Pobranie konkretnego branch i zapisanie do nowej gałęzi ===
id brancha w zdalnym repozytorium: 2faebe7bc755873aedab449e770132fcddf0ed93
git checkout 2faebe7bc755873aedab449e770132fcddf0ed93
git git switch -c nazwa_nowego_branch
=== Usunięcie lokalnego hasła ===
git config --unset user.password