“So ignorieren Sie bereits begangene Dateien in Git” Code-Antworten

So ignorieren Sie bereits begangene Dateien in Git

# Remove the files from the index (not the actual files in the working copy)
$ git rm -r --cached .

# Add these removals to the Staging Area...
$ git add .

# ...and commit them!
$ git commit -m "Clean up ignored files"
Brave Bear

Git schließen einige Dateien von Git Commit aus

To exclude some files from git commit
-----------------------------------------------
syntax  - git update-index --assume-unchanged <filepath>
example - git update-index --assume-unchanged default/config.php

To undo the above command
-----------------------------------------------
syntax  - git update-index --no-assume-unchanged <filepath>
example - git update-index --no-assume-unchanged default/config.php
Xenomorph

Ähnliche Antworten wie “So ignorieren Sie bereits begangene Dateien in Git”

Fragen ähnlich wie “So ignorieren Sie bereits begangene Dateien in Git”

Weitere verwandte Antworten zu “So ignorieren Sie bereits begangene Dateien in Git” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen