pwd - print working directory
cd - change directory
~ - home directory symbol
ls - list directory (ls .. - list parent directory)
ls -a - list directory with hidden files
cd - change directory (cd GitHub или cd "Gir Hub" или cd GitHub/projects/myproject)
cd .. - move to parent directory
touch - make file (touch filename.txt или touch dir/file.txt)
mkdir - make directory (mkdir foldername)
mkdir -p - make directory structure (mkdir dir1/dir-inside/dir-deeper-inside)
mkdir ~/my-git-projects (in home directory)
mkdir ../my-git-projects (in parent directory)
touch ../../file.txt (in projects/file.txt)
cp - copy file (cp что_копируем куда_копируем) (cp index.html src/) (cp что_копируем что_копируем что_копируем куда_копируем)
mv - move file or directory
cat - concatenate and print (прочитать файл и вывести содержимое)
rm - remove file (не в корзину, а полностью)
rmdir - remove dir (only empty dir)
rm -r - remove dir with content (не в корзину, а полностью)
стрелка вверх - предыдущая команда пользователя в командной строке
Tab -
git config --global - setting of user data in Git
git config --global user.name "User"
git config --global user.email username@yandex.ru
git init - initializing the repository
rm -rf .git - remove subdirectory .gif for cancel of initializing the repository--
git status - status .git directory
git add - add to repository (add file.txt)
git add --all - add to repository all files in directory
git add . - add all current directory
git commit -m - commit + massage (git commit -m ‘insert forms and bug fix’)
git log - log of commits
git remote add origin https://github.com/YandexPracticum/first-project.git - связывание локального репозитория с репозиторием на github
git remote -v - проверка связывания локального и удаленного репозиториев
git push -u origin main - первый пуш из локального репозитория в удаленный
git push - пуш из локального репозитория на удаленный
git clone git@github.com:TheGreatOwner/the-great-project.git - клонирование удаленного репозитория в новый локальный репозиторий
git remote -v - проверка результатов клонирования удаленного репозитория (и одновременно связывания с локальным)