Skip to content

Latest commit

 

History

History

git

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

git

Хранение учетных данных

brew tap microsoft/git
brew install --cask git-credential-manager-core
// если ошибка
git config --global credential.credentialStore cache

Ubuntu

Обновление конфига

git config --global user.name "<name>"
git config --global user.email "<email>"
git config --global user.password "<password>"

Запоминание логина и пароля от github

git config credential.helper store

Основные команды

Откатить коммиты и залить

git reset --hard <hash>
git push --force

Переключаться на ветку

git checkout <branch_name>

Насильно обновить локальный репозиторий

git fetch --all
git reset --hard
git pull

Слить ветки master и dev

git checkout master
git merge dev
git push