2
0

More than 1 year has passed since last update.

.gitignoreを反映させる方法

Posted at

.gitignoreを書く

Githubにあげないディレクトリを記載する。

bin/
.bin/
gradle/
.gradle/

反映

プロジェクトのルートで以下のコマンドを実行。

$ git rm -r --cached .
$ git add .
$ git commit -m "ignore 反映"

仕組みとしてはキャッシュを全部削除してからすべてaddしている。
addのタイミングで.gitignoreが動いてくれるのでそのタイミングで反映してくれる。

2
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
2
0