include top-directory files in a backup
I am using gsutil rsync command to run regular backups to Google Cloud Storage. It works very well except that gsutil rsync does not have an "--include" option. So I am looking for a way to include the following files in my backup:
~/.ackrc
~/.bashrc
~/.gitconfig
~/.gitignore_global
~/.vimrc
I only want to backup the above files and the ~/Documents/ directory. Maybe put all those files in a ~/scripts/ directory and backup the ~/scripts/ directory. But how would all those applications find their files? Maybe that's not the way to do it. I am open to suggestions.
I am using Fedora 24. I apologize if this is not the right forum to ask the question.