Multiple SSH Keys settings for different git account
Create different public keys
Create different ssh keys for each git account
#!/usr/bin/env bash | |
####################################################################################################################### | |
# | |
# Updates/Install the latest PhpStorm EAP | |
# | |
# -------------------------------------------------------------------------------------------------------------------- | |
# | |
# * Retrieves the current version from the EAP wiki | |
# * If the new version is not the current version (based on symlink to PhpStorm) then updates | |
# * Creates a symlink from versioned folder to PhpStorm |
Create different ssh keys for each git account
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
#!/usr/bin/env zsh | |
datadir=${XDG_DATA_HOME:-$HOME/.local/share}/windows | |
mkdir -m 0700 -p $datadir | |
git -C $datadir init | |
logfile=$datadir/windows-vms | |
exec >>$logfile | |
date=$(date) | |
echo | |
echo "# $date" | |
curl -fsSL https://developer.microsoft.com/en-us/microsoft-edge/api/tools/vms/ | \ |