git rm --cached package-lock.json
git commit
git clone старый_репо #скачать код
git reset $(git commit-tree HEAD^{tree} -m "Init") # очистить историю
git remote set-url origin новый_репо # подготовиться к отправке в новый внешний репо
git push -u origin main # отправить текущую ветку и связать ветки
git fetch
git merge origin/stage
git rebase origin/stage
git update-index --assume-unchanged <file>
heroku create
создаёт пустой репозиторий на хостинге Heroku и добавляет ссылку на него в локальный репозиторий. Но локального репозитория на тот момент ещё не было! В итоге remote с именем heroku теперь отсутствует и команда push не знает, куда отправлять бота.git remote add heroku https://git.heroku.com/cryptic-cliffs-15444.git
git push -u heroku main
#!/bin/sh
#
# An example hook script to verify what is about to be committed.
# Called by "git commit" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-commit".
if git rev-parse --verify HEAD >/dev/null 2>&1
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=$(git hash-object -t tree /dev/null)
fi
# Redirect output to stderr.
exec 1>&2
# полные пути от корня репо, разделенные символами новой строки
SECRET_FILES='secret.txt
dir/secret2.txt'
if git diff --cached --name-only $against |
grep --quiet --line-regexp --fixed-strings "$SECRET_FILES"
then
echo Попытка закоммитить запрещённые файлы
exit 1
else
exit 0
fi
# If there are whitespace errors, print the offending file names and fail.
exec git diff-index --check --cached $against --
❯ git add secret.txt
❯ git commit -m 'test hook'
Попытка закоммитить запрещённые файлы
git add
и завершаем слияние стандартной командой git merge --continue
git config --show-origin --list
value: test-1
git log --name-status --diff-filter=D # посмотри какие коммиты удалили файлы
git revert 0c76ed82d8a98bb9cae19a74fe4733c4f0c650d5 # отмени операцию удаления