Activité-Paranormale


Red devil Information

Advertisements

Search

Development

Contribute your coding skills!

Develop

Quotations

Random quotation
In human intercourse the tragedy begins, not when there is misunderstanding about words, but when silence is not understood.
(Henry David Thoreau)

Events - October 1

Event Calendar

Validation

Valid XHTML 1.0 Transitional Valid CSS!

Crystal ballMagic trick

AbductionSupprimer un fichier d'un référentiel Git sans le supprimer du système de fichiers local

  1. Editer le fichier .gitignore.

    echo mylogfile.log >> .gitignore
  2. Supprimer tous les éléments de l'index.

    git rm -r -f --cached .
  3. Reconstruire l'index.

    git add .
  4. Faire un nouveau commit

    git commit -m "Removed mylogfile.log"

Sources


Github - CC BY 2.5


Advertisements