Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
git リポジトリを、ローカルにあるのとまったく同じように見せたいです。
git リポジトリに A、B、C、D、E のファイルがあり、ローカル マシンで A、B、C を削除し、D と E を残した場合と同様です。プッシュすると、D と E のみが表示されます。リポジトリ。どうすればこれを行うことができますか。また、 on heroku でも同じことができますか?
すべての変更をステージングし、コミットしてプッシュします。
git add -A git status git commit -m "Deleted A, B, C" git push