4
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?

githubでリモートリポジトリ上から特定のファイルのみ削除する方法

補足:以降のusernameは自分のgithubのユーザー名に置き換えて読んでください

削除手順

1該当のファイルを削除する前にリポジトリのクローンを作成する(まだない場合)

git clone https://github.com/username/repository.git

2リポジトリに移動する

cd repository

3ローカルリポジトリからファイルを削除する

git rm src/App.css

※src/App.cssは削除したいファイルのパスを入れてください

4変更をコミットする

git commit -m "Remove specific file"

5リモートリポジトリにpushする

git push origin main

※mainはリモートリポジトリのブランチ名です。

完了

4
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
4
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?