“Git Stop Rastreing Directory” Respostas de código

Remova uma pasta do rastreamento git

git rm -r --cached path_to_your_folder/
Clear Cobra

Git Stop Rastreing Directory

	Step 1. Add the folder path to your repo's root .gitignore file.
path_to_your_folder/

	Step 2. Remove the folder from your local git tracking, but keep it on your disk.
git rm -r --cached path_to_your_folder/

	Step 3. Push your changes to your git repo.
    
// Taken from brilliant answer on 
// https://stackoverflow.com/questions/24290358/remove-a-folder-from-git-tracking
aso

Respostas semelhantes a “Git Stop Rastreing Directory”

Perguntas semelhantes a “Git Stop Rastreing Directory”

Mais respostas relacionadas para “Git Stop Rastreing Directory” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código