Changes between Version 5 and Version 6 of DeveloperTips
- Timestamp:
- Jul 17, 2020, 1:05:27 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperTips
v5 v6 23 23 == Submitting Patches == 24 24 25 === Configuring Authentication ===25 === Configuring Authentication: macOS === 26 26 27 27 On the Mac platform, the `webkit-patch` tool can read your Bugzilla credentials from Keychain. However, … … 30 30 31 31 ```security add-internet-password -r http -s bugs.webkit.org -a name@email.com -w supersecurepassword``` 32 33 === Configuring Authentication: Linux === 34 35 On Linux, it is highly recommended to install python3-secretstorage before using webkit-patch. Otherwise, python-keyring will store your password in a strange location instead of using the system keyring. Furthermore, webkit-patch will only remember your username if you manually store it in your local git config: 36 37 ```git config bugzilla.username name@email.com```