Changes between Version 5 and Version 6 of DeveloperTips


Ignore:
Timestamp:
Jul 17, 2020 1:05:27 PM (4 years ago)
Author:
Michael Catanzaro
Comment:

Add Linux instructions to configure credential storage with webkit-patch

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperTips

    v5 v6  
    2323== Submitting Patches ==
    2424
    25 === Configuring Authentication ===
     25=== Configuring Authentication: macOS ===
    2626
    2727On the Mac platform, the `webkit-patch` tool can read your Bugzilla credentials from Keychain. However,
     
    3030
    3131```security add-internet-password -r http -s bugs.webkit.org -a name@email.com -w supersecurepassword```
     32
     33=== Configuring Authentication: Linux ===
     34
     35On 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```