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?

SourceTree / Windows でスタッシュの内容が閲覧できなくなったら

Posted at

本文書の概要

  • SourceTree のバージョンアップでスタッシュが閲覧できなくなることがある
  • Windows の場合の対応を解説

Windows の Git をコマンドプロンプトで更新する

  • コマンドプロンプトを開き、以下のコマンドを実行する
git update-git-for-windows
  • ダイアログが開く
  • Git の導入手順と同じなので、ほぼ Next をクリックすれば OK

認証を確認する

  • ツール > オプション > 認証で、BitBucket や GitHub の設定を確認
  • BitBucket が二段階認証対応で、認証が外れていることがある(再登録すれば良い・二段階認証は必須ではない)

エラー対応(fatal unsafe repository ~のダイアログが出たら)

  • Git のバージョンが上がると Git の設定に safe.directoryとして作業ディレクトリを登録する必要が発生することがある
  • 設定は以下で確認できる
git config --global -l
  • 登録コマンド
git config --global --add safe.directory <作業ディレクトリのパス>
  • ただし、環境によって、パスの指定がうまく通らない場合がある
  • エディタで下記ファイルを開いた方が、既存の設定を参考できるので確実
C:\Users\<ユーザー名>\.gitconfig
  • 保存したらファイルを閉じて、SourceTree を再起動する

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?