Making the Portable Toolkit More Portable
One problem that may appear when creating a toolkit with Scoop to be used between computers is the minor configuration differences necessary on different computers. For instance, your home directory may be different on a work computer vs your personal computer. A simple solution is to create template files with placeholders that can be replaced with proper values after cloning the Scoop persist directory. Making template files For any configuration file in your persist directory that will need to be different on different computers, create a duplicate of that file with the suffix .template. The original file should be added to the .gitignore file, and the .template file should be added to source control instead. ...