Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 1.06 KB

git.org

File metadata and controls

31 lines (26 loc) · 1.06 KB

Git Config

Flutter requires you to mark this directory as safe in order to function properly.

[safe]
    directory = /opt/flutter

Configures git to use git-credential-libsecret as the credential helper. This allows it to use the libsecret API to store and retrieve passwords, which allows for encrypted storage of HTTPS credentials using the GNOME Keyring (or some other keyring).

The libsecret and gnome-keyring packages need to be installed for this to work.

[credential]
    helper = /usr/lib/git-core/git-credential-libsecret
[init]
    defaultBranch = master
[user]
    name = tralph3
    email = [email protected]