Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

check gitignore

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...