tail -f /dev/null

If you haven't had any obstacles lately, you're not challenging. be the worst.

git

コミット履歴から秘匿情報を削除したい

git

概要 秘匿情報を過去にコミットしたことがある場合等で、特定のディレクトリのみ、コミット履歴から削除する。 手順 $ git filter-branch -f --index-filter 'git rm -rf --ignore-unmatch {path_to_directory}' HEAD # or $ git filter-branch -f --index-f…

📝 Gitの設定周りやコマンド

git

Environment git version 2.20.1 (Apple Git-117) user setting git config --global user.name "xxx" git config --global user.email "xxx@xxx.com" # confirm settings git config --list # Detect changes in capitalization git config core.ignorecase…