简体   繁体   中英

Git add all files including files matching in .gitignore

I am trying to import existing git and repo projects into a new single git repository.

There are many .gitignore files already checked in, and it is preventing me from importing the files matching in the .gitignore file.

What I have done so far is delete all of the .gitignore files and then everything gets put in, with a git add -A, and then I will put the .gitignore files back when I am done importing.

Is there some clever way to do this with command line options so I don't have to go through all of these extra steps?

Try force-adding ignored files by using git add -f . , see the help for git-add .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM