简体   繁体   中英

How to source the files to be added to a git repo from a file?

I want to always add the same files to my git repo, and I thought that having a file of files to add to git would be an easy way to do that.

How can I ask git add to read the files to be added from a file?

It is also easy to use standard cli tools to do this:

# bash:
git add $(cat file)

# xargs is standard on linux, and comes with git-bash on Windows :
cat file | xargs git add

It seems that git add --pathspec-from-file=file is just what I was looking for.

Just make sure that all lines are valid file names. And that none are empty.

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