| There are additional characters that need to be escaped as well:
- : (colon)
- " (double quote)
- ' (single quote)
- @ (at symbol)
I recently faced an issue where a git-password had some combination of the above characters... and I kept getting errors when trying to use it in my Pipeline file (both via the special helper method `credentials()` to set it as an environment variable or the credentials binding plugin). To work around my issue... I ended up reseting the password to something with no special characters. |