create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
#!/usr/bin/env bash | |
#------------------------------------------------------------------------------------------------------------- | |
# Copyright (c) Microsoft Corporation. All rights reserved. | |
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. | |
#------------------------------------------------------------------------------------------------------------- | |
# Syntax: ./common-debian.sh <install zsh flag> <username> <user UID> <user GID> | |
set -e |
(defun et/rename-org-link-file (path) | |
(interactive | |
(list | |
(let* ((link (org-element-context)) | |
(old-path (org-element-property :path link))) | |
(read-string "PATH: " old-path nil old-path)))) | |
(let ((old-path (org-element-property :path (org-element-context)))) | |
(mkdir (file-name-directory path) t) | |
(rename-file old-path path) | |
(save-excursion |