-
github could not fetch…..
зайти в https://github.com/settings/applications#personal-access-tokens
composer config --global github-oauth.github.com
-
Git: fatal: LF would be replaced by CRLF
$ git config --global core.autocrlf false
$ git config --global core.safecrlf false
-
Обновить удаленный репозиторий, данная команда удалит все коммиты на удаленном репе и создаст копию локального:
git push -f origin master
-
Удалить последний коммит
git reset --hard HEAD~1
-
Откатить изменения файла в GIT
git checkout -- /PHPMailer/*
git checkout -- /file.js
git checkout -- /*.js
GIT
Добавить комментарий