我将此添加到了.gitignore文件中:
# JPEG
*.jpg
*.jpeg
*.jpe
*.jif
*.jfif
*.jfi
# JPEG 2000
*.jp2
*.j2k
*.jpf
*.jpx
*.jpm
*.mj2
# JPEG XR
*.jxr
*.hdp
*.wdp
# Graphics Interchange Format
*.gif
# RAW
*.raw
# Web P
*.webp
# Portable Network Graphics
*.png
# Animated Portable Network Graphics
*.apng
# Multiple-image Network Graphics
*.mng
# Tagged Image File Format
*.tiff
*.tif
# Scalable Vector Graphics
*.svg
*.svgz
# Portable Document Format
*.pdf
# X BitMap
*.xbm
# BMP
*.bmp
*.dib
# ICO
*.ico
# 3D Images
*.3dm
*.max
找到了here。
然后我添加了一些.png
文件并提交了此更改并将其推送,但是如果我执行git status
,这些文件就会显示出来。
geändert: skin/frontend/venedor/custom/images/kreis_rot_weiss.png
geändert: skin/frontend/venedor/custom/images/kreis_weiss.png
我在做什么错了?
答案 0 :(得分:0)
在我对gitignore文件进行更改之前,我认为这些文件位于暂存区域中。我执行了git reset --hard HEAD
并再次添加了png文件,现在如果我调用git status
因此.gitignore仅适用于新文件,不适用于暂存区域中已经存在的文件。