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

【Rails チュートリアル】 ブランチのマージができない(gitignoreの設定) #1

Last updated at Posted at 2019-07-20

第1章で少しつまづいたところをメモ程度に記載

●1.1.4ブランチ、編集、コミット、マージにて

$ git checkout -b modify-README →ブランチを作成し… 
なんらかを編集し…
$ git checkout master →マスターブランチに移動し…
$ git merge modify-README →マージ…

「.c9/metadata/tab0が変更されていますのでマージできません」的なエラーが

●原因
・gitignoreに.c9の設定がない

●方法
・.c9フォルダは隠しフォルダになっているため、表示していない場合は表示させる。
 ※ここでそもそも.gitignoreがない場合は、一度gitにpushした内容をチェックアウトする
・.c9/* の記述を追加
・場合によってはキャッシュが残っている場合があるため、キャッシュ削除
・コミット・プッシュを実行(.c9がコミット・プッシュされていなければ完了)

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?