“Aktualizacja Git Gitignore” Kod odpowiedzi

Aktualizacja Git Gitignore

git rm -r --cached .
git add .
git commit -m "update gitignore"
Proud Falcon

Reinit Gitignore

# rm all files
git rm -r --cached .
# add all files as per new .gitignore
git add .
# now, commit for new .gitignore to apply
git commit -m ".gitignore is now working"
Attractive Alligator

Gitigore RM Cache

git rm -r --cached .
Blue Beetle

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

Git dodaj Gitignore

$ touch .gitignore
Alert Alligator

Odpowiedzi podobne do “Aktualizacja Git Gitignore”

Pytania podobne do “Aktualizacja Git Gitignore”

Więcej pokrewnych odpowiedzi na “Aktualizacja Git Gitignore” w Shell/Bash

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

Przeglądaj inne języki kodu