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?

Android StudioのGitで特定のファイルをバージョン管理から外す方法

Posted at

何をするのか

Gitで特定のファイルをバージョン管理から外したい
ターミナルを使うので、多分Android Studioに限らず同じやり方な気がする

環境

Android Studio Koala | 2024.1.1 Patch 2

やり方

  1. 消したいファイルを右クリックして、「パス/参照のコピー」を選択
    image.png
  2. 「リポジトリルートからのパス」を選択
    画像1.png
  3. 画面左下の「ターミナル」を選択
    画像1.png
  4. こんな画面が出たら
    画像1.png
  5. 以下のコマンドを打って、最後にペーストする
    rmはremove(取り除く)の略称だね
    コマンド
    git rm --cached <ペーストしたパス>
    
  6. 下のような感じに入力できたらEnterを押す
    git rm --cached app/release/app-release.aab
    
  7. 以下のような文字が出たらOK
    rm '<ペーストしたパス>'
    

これで、消したかったファイルを変更しても、画面左のコミットを見た時に、表示されないはず。
表示されていたら、一回転した矢印を押してリフレッシュしよう。
image.png

以上!誰かの役に立てれば嬉しいな。

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?