git checkout file_path
■ファイルの更新履歴を全て削除したい時(gitの管理下から外す時)
#ディレクトリごと git rm --cached -r dir/ #ファイルだけ git rm --cached file_path
■更新履歴がある場合、.gitignoreでignore出来ません。この場合、「ファイルの更新履歴を全て削除」してください。やり方は上記。
git checkout file_path
#ディレクトリごと git rm --cached -r dir/ #ファイルだけ git rm --cached file_path
0 コメント:
コメントを投稿