0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

全て戻す!泣

Posted at

前に、アカウント有効化機能をつけようとしたが失敗した。しかし、git mergeしてしまっていたため、一旦全て削除することにした。

ターミナルから git logで 戻りたいところのハッシュ値を確認

git reset --hard [ハッシュ値]で戻す

これを git push して、リモートリポジトリも変更したかったが、エラー

rm -rf .git でgit init 前の状態に戻す

全て作り直そう!!

もう一度、空のリポジトリを作る

まだ git push してもエラーが出るので、

rm -rf .git でgit init 前の状態に戻す

git init
git add -A
git commit -m "intialize repository"

git push origin master をしてもエラーが出るので、
git push -f origin master で強制的に実行

herokuに公開していたアプリも一旦削除

heroku create tasknotice

git push heroku master

heroku run rails db:migrate

heroku open

これでアカウント有効化を追加する前に戻れた!!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?