GIT Flashcards
Jak sprawdzić wersję git
git –version
Jak ustawić nazwę i email użytkownika
git config –global user.name “Andrew”
git config –global user.email “andrzejszomszor@gmail.com”
Print the working directory
pwd
Change directory
cd
Make directory (utwórz folder)
mkdir “Hello”
Zainicjuj git w danej lokalizacji
git init
Sprawdź status
git status
Add all changes to the staging area.
git add -A
Skomituj zmiany (z opisem)
git commit -m “opis”
Przywróć zmiany
git checkout – *
Połącz repozytorium lokalne z bitbucket
git remote add origin git@bitbucket.org:AndrewSzo/modernweb.git
Sprawdź ścieżkę do repozytorium w Bitbucket
git remote -v
Send project to the server
git push origin master
Send project from server to local directory
git pull origin master
Clone repository
git clone https://github.com/LearnWebCode/travel-site-files.git