git rm "путь/import_1*.csv"
git config --global core.quotePath false
➜ git branch -vv
* main 0e02250 [origin/dev] Commit Message
➜ git push -u origin main:main
branch 'main' set up to track 'origin/main'.
Everything up-to-date
➜ git branch -vv
* main 0e02250 [origin/main] Commit Message
git branch feature/menu # создать ветку, новые коммиты уже окажутся в ней
git reset HEAD~5 # откатить мастер на 5 шагов назад
git config --system receive.denyNonFastForwards true
git config --system receive.denyDeletes true
git checkout F1^ # переместить HEAD на C3
git commit –m "C10" # добавить коммит
git rebase --onto HEAD master F3 # пересадить сюда кусок ветки F3
git cherry-pick F1 # скопировать коммит С4 с вершины ветки F1
reset --hard
git clone --branch <branchname> <remote-repo-url>
git clone --no-checkout <remote-repo-url>
git config --global core.editor "ваш любимый редактор"