From 43d747b6ed0a51d741a1707c743904b77ac5378d Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 26 Jun 2024 06:24:04 +0300 Subject: [PATCH] Updated Emoji (markdown) --- Emoji.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Emoji.md b/Emoji.md index e69701c..13ea193 100644 --- a/Emoji.md +++ b/Emoji.md @@ -28,7 +28,21 @@ sudo apt -y install git git config --global user.name "Yourfirstname Yourlastname" git config --global user.email email-address-you-use-at-github@example.com git config --global push.default simple + +nano .ssh/config ``` +There add your User (GitHub username) and ssh private key: +``` +Host * + IdentitiesOnly=yes + +Host github.com + Hostname github.com + User xet7 + IdentityFile ~/.ssh/id_xet7ed +``` +Save and Exit with Ctrl-o Enter Ctrl-x Enter + ### 2. Create fork of `https://github.com/wekan/wekan` ```