2
2

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 5 years have passed since last update.

私のとってもちいさな失敗 (ちょこちょこあげていきます)

Last updated at Posted at 2016-03-04

##なんだか小さな失敗を繰り広げるので記録します。
本に書くまでもないこういう小さなことがきっと誰かの役にたつ・・・はず

##その1 しれっと_(アンダーバー)つけちゃいました の巻
viewを作成中 パーシャルのhtml.erbに_(アンダーバー)を付けるのを忘れてました。

そのままgitで add . → commit
rails s -p $PORT -b $IP (クラウド9)でサーバを立ち上げると
path通ってないんじゃない?とエラー画面でお叱りを受けます。。。

「あらら」と_を付けてパーシャルをリネーム

今度はpush出来ません。
「しれっとリネームしないでください。リネーム前のファイルはどうなったの?」
的ご指摘をいただき、
リネーム前のファイルを rm して それから push しました。

##その2 confrictしてアルファベットで詰め寄られるの巻
まぁ・・・いろいろありまして、confrictしたまではいいのですが(?)
bashさんに「どーするのよ」と詰め寄られました。[Ynaqdh]というアルファベットと共に><

「いつもはもっと丁寧にあ~だこーだ言ってくれるのになぜ アルファベットの羅列なの??」
アルファベットはこういう意味だそうです。
Y - yes, overwrite
n - no, do not overwrite
a - all, overwrite this and all others
q - quit, abort
d - diff, show the differences between the old and the new
h - help, show this help

#Gitで fatal: remote origin already exists.
どうしてもリポジトリを作り直して、やりなおしたくなっちゃったんです。。。
githubにリポジトリを作って
git remote addしてって作業したんですけど・・・

でもなぜだか上のコメントと共にpushが反映されない。。。
一回削除して やり直しました。
$ git remote rm origin $ git remote add origin git@github.com:ユーザ名/リポジトリ名.git $ git push -u origin master

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?