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
    
  
  
    
  | базовые команды | |
| git clone адрес репозитория - клонировать репозиторий на локальный компютер | |
| git commit -m 'initial commit' комит изменений в локальный репозиторий | |
| git push -u origin master - только первый раз отправка изменений в удаленный репозиторий | |
| git push - все последующие разы отправка изменений в удаленный репозиторий | |
| окат изменений | |
| git pull - скачивается актуальная версия удаленного репозитория и все изменения применяются к локальному репозиторию | |
| checkout - перейти в другую ветку | |
| discard - не отправлять в репозиторий те изменения которые нам не нравятся | 
  
    
      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
    
  
  
    
  | echo "# название" >> README.md | |
| git init | |
| git add README.md | |
| git commit -m "first commit" | |
| git remote add origin https://github.com/stanruss/название.git | |
| git push -u origin master | |
| git log --oneline - посмотреть все коммиты. | |
| git checkout . - восстановить все. | |
| git checkout "код коммита" - вернуть до состояния этого коммита. | 
  
    
      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
    
  
  
    
  | Команды в Git Bash консоли | |
| clear — Очистить консоль | |
| Навигация | |
| pwd — Показать текущий каталог | |
| ls - Показать файлы в данной папке, кроме скрытых | |
| ls -f — Показать файлы в данной папке, включая и скрытые | |
| cd c:/ — Перейти в конкретный каталог | |
| cd - — Вернуться назад | |
| cd .. — Выйти на 1 уровень вверх | 
  
    
      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
    
  
  
    
  | <div class="top-nav"> | |
| <ul class="top-nav_menu"> | |
| <li><a href="#">CSS</a></li> | |
| <li><a href="#">SASS</a></li> | |
| <li><a href="#">HTML</a></li> | |
| <li><a href="#">PHP</a></li> | |
| </ul> | |
| </div> | |
| -------------SASS-------------- | |
| .top-nav | 
  
    
      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
    
  
  
    
  | <label><input type="checkbox"><i></i></input></label> | |
| body{ | |
| text-align:center; | |
| } | |
| input{ | |
| display: none; | |
| } | |
| i{ |