6
7

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.

gitトラブルシューティング

Last updated at Posted at 2014-01-30

##リモートブランチと同じ名前のローカルブランチを作ってしまった。
git checkout origin/hogehoge
をやろうとして、間違って
git branch origin/hogehoge
とやってしまった場合。

とりあえず一旦、間違って作ったorigin/hogehogeをチェックアウトする。

git checkout origin/hogehoge

リモートとローカルに同じブランチ名のものがある場合、ローカルが優先されるらしい。

チェックアウトしたら、今いるブランチ名を適当なものに変更する。

git branch -m foobar

##fatal: write error: No space left on deviceというメッセージが出た。
ディスクの容量不足。ディスクを追加するか、要らないファイルを消す。

##間違ってpullしてしまった
git reset --hard ORIG_HEAD
で、pullする直前の状態に戻る。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?