Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.4k views
in Technique[技术] by (71.8m points)

git - How do I prevent files from being sent to the staging area?

I am working on a project that relates several files, some of which I want to add toa git repository and some of which I do not. By running git add . I would add all my files with untracked changes into the staging area, what if I want to run that command in such a way that all the files with untracked changes EXCEPT those I do not want to sent to the staging area are to be sent to the staging area from now on, such that I do not have to type all the files one by one.

Kind regards.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

check gitignore

A gitignore file specifies intentionally untracked files that Git should ignore. Files already tracked by Git are not affected


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...