Как да следите файлове в git

Примерен код

15
0

# Print out the list of files which will be removed (dry run)
git clean -n

# Interactive and you will get a quick overview of what is 
# going to be deleted offering you the possibility to include/exclude 
# the affected files
git clean -i

# To remove files, run
git clean -f

# To remove directories, run 
git clean -fd

# To remove ignored files, run 
git clean -fX

# To remove ignored and non-ignored files, run 
git clean -fx
4
0

git rm --cached filename
2
0

git clean -f
1
0

git rm -r --cached .
0
0

git reset filename
0
0

git rm -r --cached <file>

На други езици

Тази страница на други езици

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Íslensk
..................................................................................................................