recherche

Maison  >  Questions et réponses  >  le corps du texte

.gitignore 例外下的文件夹不检测新增文件

*
!about/*
!.gitignore
!extend/*
!extend/core/2029321.php
!extend-library/*
!imaegs/*

*忽略库中的所有文件
之后下面开始添加例外
现在问题来了
1、已经提交过的文件 删除 和 更变都会被检测
2、新建立的文件 例如extend/core/2029321.php 就不会被检测。

求解、

阿神阿神2777 Il y a quelques jours1051

répondre à tous(1)je répondrai

  • 阿神

    阿神2017-04-27 09:05:30

    Reposté depuis Stack Overflow

    1. Tout d'abord, Soumettre toutes les mises à jour
    2. Exécuter git rm -r --cached . pour supprimer tous les fichiers modifiés de l'index
    3. Exécuter git add . et git commit -m ".gitignore is now working"

    répondre
    0
  • Annulerrépondre