10
変更内容.gitignore
内のファイルをgitで追跡しています。.gitignoreは、ファイル内で変更が追跡されるのを止めません。
ファイル構造:.gitignore
の
.gitignore
wp-config.php
内容:
alex$ git status
# On branch master
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: wp-config.php
#
方法:
wp-config.php
私はwp-config.php
を変更し、私はそれが変更されていることがわかりgit status
を実行
.gitignore
に入れれば十分だろうと思った。
おかげでたくさんのM8! – zaw
他のファイルはどうなっていますか?このような他のファイルやフォルダはすべて追加する必要がありますか? git ignoreを追加する代わりに? – Naveenbos