流れ(consoleにて)
ubuntu:app名 (master)$git checkout -b mistake-branch
mistake-branchでファイルなどに致命的なミスを犯した
branchを削除したいと感じる。
→ubuntu:app名 (mistake-branch)$ git checkout master
→ubuntu:app名 (master)$git branch -D mistake-branch
ubuntu:app名 (master)$ git status
On branch master Your branch is up to date with 'origin/master'. Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git checkout -- <file>..." to discard changes in working directory) modified: app/controllers/xxxx_controller.rb modified: app/models/xxxx.rb modified: app/models/xxxx.rb modified: config/xxxx.rb modified: db/xxxx.rb Untracked files: (use "git add <file>..." to include in what will be committed) app/models/xxxx.rb db/migrate/xxxxxxxxxxxx_create_xxxx.rb test/fixtures/xxxx.yml test/models/xxxx_test.rb
本来は"コミットするべきファイルがありません"などのコンソールからのメッセージを期待していたので、少し困っています。どうすればmistake-branchの変更内容を完全に削除できるのでしょうか。どなたかご享受いただければ幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/07 10:37
2021/03/11 01:26
2021/03/15 10:37