4

OK、それで私は次のブランチを持っています:

git branch
  2012-08-06-AAH
  2012-08-06-JWH
  2012-08-06-Master
* master

チェックアウトしたい2012-08-06-AAH。だから私はこれを行います:

git checkout 2012-08-06-JWH
error: Your local changes to the following files would be overwritten by checkout:
    MyProject/canada/rocky_mountaineer/best/coast_to_coast_rail/index.html
    MyProject/europe/train_tours/scenic_europe/index.html
    MyProject/europe/train_tours/springtime_alps/index.html
    MyProject/europe/train_tours/week_in_spain/index.html
    MyProject/europe/train_tours/windmills_vineyards_paris/index.html
    MyProject/europe/train_tours/wonderful_france/index.html
    MyProject/europe/train_tours/wonders_st_petersburg_moscow/index.html
Please, commit your changes or stash them before you can switch branches.
Aborting

OK...まあまあ。だから私はこれを行います:

git status
# On branch master
nothing to commit (working directory clean)

ええと...では、コミットするものがない場合、どうすれば「変更をコミットするか、それらを隠しておく」ことができますか?

あなたの助けに感謝します-私は少しGit初心者です(主にGUIクライアントであるTowerを使用しています)、そしてそれが私に失敗したとき、私はコマンドラインに頼りました。

4

1 に答える 1

4

これらのファイルにローカルで変更を加えていないことが確実な場合は、次のことを試すことができます。

git checkout -- .

これにより、作業ツリーが HEAD にリセットされ、チェックアウトを続行できるようになります。

于 2012-08-19T07:54:15.593 に答える