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?

More than 3 years have passed since last update.

【初心者備忘録】Gitコマンドを使用して リモートリポジトリからファイルを削除する

Last updated at Posted at 2020-10-28

gitを使用し始めたが何もわからず四苦八苦...
とりあえず学んだことを備忘録としてまとめておく。

##参考サイト
https://www.findxfine.com/programming/995557962.html

##方法
内容としてはそれほど難しいことではなかった。
まず、ローカルのファイルをrmにて削除する。

git rm [削除したいファイル名]

これで、ローカルからファイルが削除されているはず。

次に、削除したという変更内容をcommitする。

git commit -m "delete"

 
最後にpushすることでリモート側に変更内容が反映される。

git push origin master

 
これで、リモート、ローカル共にファイルの削除が完了。
実際にやってみると難しくはないが、理解しないと必要なものまで消してしまう恐れがある。
もっと勉強する必要があると感じた今日この頃である...

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?