“git usuń plik z repozytorium, który został dodany do Gitignore” Kod odpowiedzi

git usuń plik z repozytorium, który został dodany do Gitignore

Commit any files that you need to change/delete to the repo. Then:

git rm -r --cached .  # this will clean all files from cache. To clean a single file, exchange '.' with filename
git add .  # add all of the now uncached files that are not gitignored to the staging area
git commit -m "fix .gitignore"  # commit the changes
Envious Elk

Usuń pliki Gitignore

git ls-files --ignored --exclude-standard -z | xargs -0 git rm --cached
git commit -am "Remove ignored files"


// answer from: thSoft
Hurt Hummingbird

Odpowiedzi podobne do “git usuń plik z repozytorium, który został dodany do Gitignore”

Pytania podobne do “git usuń plik z repozytorium, który został dodany do Gitignore”

Więcej pokrewnych odpowiedzi na “git usuń plik z repozytorium, który został dodany do Gitignore” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu