#.gitignoreを書く
Githubにあげないディレクトリを記載する。
bin/
.bin/
gradle/
.gradle/
#反映
プロジェクトのルートで以下のコマンドを実行。
$ git rm -r --cached .
$ git add .
$ git commit -m "ignore 反映"
仕組みとしてはキャッシュを全部削除してからすべてaddしている。
addのタイミングで .gitignore
が動いてくれるのでそのタイミングで反映してくれる。
Go to list of users who liked
More than 3 years have passed since last update.
#.gitignoreを書く
Githubにあげないディレクトリを記載する。
bin/
.bin/
gradle/
.gradle/
#反映
プロジェクトのルートで以下のコマンドを実行。
$ git rm -r --cached .
$ git add .
$ git commit -m "ignore 反映"
仕組みとしてはキャッシュを全部削除してからすべてaddしている。
addのタイミングで .gitignore
が動いてくれるのでそのタイミングで反映してくれる。
Register as a new user and use Qiita more conveniently
Go to list of users who liked