create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| { | |
| "$schema": "https://biomejs.dev/schemas/1.9.0/schema.json", | |
| "vcs": { | |
| "clientKind": "git", | |
| "enabled": true, | |
| "useIgnoreFile": true, | |
| "defaultBranch": "main" | |
| }, | |
| "organizeImports": { | |
| "enabled": true |
| #!/bin/sh | |
| #################################################################### | |
| # Check for Homebrew, install if we don't have it | |
| #################################################################### | |
| if test ! $(which brew); then | |
| echo "Installing homebrew..." | |
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| fi |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"