This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Youtube client | |
- [ ] Create and configure .editorconfig (EditorConfig helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs.) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.declaration-order { | |
/* Позиционирование */ | |
position: absolute; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
z-index: 100; | |
/* Блочная модель */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Для того что бы скопировать/клониолвать/переместить с компьютера на github свой репозиторий нужно: | |
1. Создать репозиторий на github и смотришь его url по https или ssh | |
2. В папке с проектов запустить gitBash и прописать: | |
git init // Инициализация | |
git add . // Индексируешь | |
git commit -m "first commit" // Коммитишь или git commit -am "first commit" | |
git status // Проверяешь, что все нужные файлы проиндексированы, если попали ненужные изменения, сбрасываешь: git reset HEAD имя файла | |
git remote add <name> <url> // Добавляешь удаленный(дальний) репозиторий, где <name> - это какое-нибудь имя, например origin <url> - | |
это https/ssh ссылка на репозиторий | |
// По умолчанию репозиторий называется origin, просмотреть их можно git remote -v. |