Skip to content

Instantly share code, notes, and snippets.

@guillep
Created August 14, 2017 11:46
Show Gist options
  • Save guillep/1cc4ad270f1cbe24a0b0621d818cdcfc to your computer and use it in GitHub Desktop.
Save guillep/1cc4ad270f1cbe24a0b0621d818cdcfc to your computer and use it in GitHub Desktop.
StartupPreferencesLoader default executeAtomicItems: {
StartupAction
name: 'Git Settings'
code: [
FileStream stdout
cr; nextPutAll: 'Setting the ssh credentials'; cr.
Iceberg enableMetacelloIntegration: true.
IceCredentialsProvider useCustomSsh: true.
IceCredentialsProvider sshCredentials
username: 'git';
publicKey: '/Users/ducasse/.ssh/id_rsa.pub';
privateKey: '/Users/ducasse/.ssh/id_rsa'.
IceCredentialsProvider
plaintextCredentials: (IcePlaintextCredentials new username: 'Ducasse'; password: 'xxxx' ; yourself ).
FileStream stdout
cr; nextPutAll: 'Finished'; cr ].
}.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment