git初心者です。
ある作業前に
commitし、gitbacketにpushした後、新規にブランチをつくりました。
新規ブランチ上で色々なファイルを修正、削除、追加しました。
git statusした状態
rails_user:~/environment/gv (change-image-post-logic) $ git status On branch change-image-post-logic Changes not staged for commit: (use "git add/rm <file>..." to update what will be committed) (use "git checkout -- <file>..." to discard changes in working directory) deleted: app/assets/javascripts/item_add_image.js deleted: app/assets/javascripts/item_delete_image.js deleted: app/assets/javascripts/item_edit_image.js modified: app/assets/stylesheets/item.scss modified: app/controllers/items_controller.rb modified: app/models/item.rb modified: app/views/items/_form.html.erb modified: db/migrate/20200604074816_create_items.rb modified: db/schema.rb Untracked files: (use "git add <file>..." to include in what will be committed) app/assets/javascripts/image.js app/models/image.rb db/migrate/20200908021853_create_images.rb spec/factories/images.rb spec/models/image_spec.rb no changes added to commit (use "git add" and/or "git commit -a")
この作業自体が不要となり、全ソースを直近(1つ前)のcommitまで戻したいです。
追加になったファイルも不要です。
その場合のコマンドは以下で合っていますでしょうか?
慣れておらず不安なため入力前に質問させていただきました。
宜しくお願い致します。
git checkout master git reset --soft HEAD~ git branch -d 不要なブランチ
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/09 23:01