J'ai le fichier .gitignore suivant
# file named .gitignore
system/application/config/database.php
system/application/config/config.php
system/logs
modules/recaptcha/config/*
Cependant, lorsque j'ajoute des modifications dans config et recapcha.php, git status m'avertit comme suit. Lorsque j'ajoute des modifications à database.php, il ne les affiche pas dans le statut
shin@shin-Latitude-E5420:/var/www/myapp$ git status
# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.
#
# Changes not staged for commit:
# (use "git add ..." to update what will be committed)
# (use "git checkout -- ..." to discard changes in working directory)
#
# modified: modules/recaptcha/config/recaptcha.php
# modified: system/application/config/config.php
#
no changes added to commit (use "git add" and/or "git commit -a")
Comment puis-je résoudre ce problème?
J'utilise git version 1.7.5.1 sur Ubuntu 11.04
0 votes
Possible duplicate de Git : Supprimer un fichier du dépôt sans le supprimer du système de fichiers local