From 4e3509aab64f8794f695b5c3564fb15b041a2dba Mon Sep 17 00:00:00 2001 From: OmarKHDR Date: Mon, 12 May 2025 17:42:42 +0300 Subject: [PATCH 1/2] added omarkhdr to Contributors list --- Contributors.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Contributors.md b/Contributors.md index cabcc56f..c5f6f6e2 100644 --- a/Contributors.md +++ b/Contributors.md @@ -29,6 +29,7 @@ - [Johnathan Aye](https://github.com/jaye311) - [IamJayPrakash](https://github.com/IamJayPrakash) - [Mukund](https://github.com/mukundgupta) + - [OmarKHDR](https://github.com/OmarKHDR) - [Kalyanram Poonamalli](https://github.com/kram-12) - [RandyGamplays](https://github.com/RandyZam04) - [Luis Romera](https://github.com/LuisFelipeRomera) From dad102e1717d4c4357ae63a6beb301d68e78373e Mon Sep 17 00:00:00 2001 From: OmarKHDR Date: Mon, 12 May 2025 18:25:55 +0300 Subject: [PATCH 2/2] authentication error solution for arabic eg language --- docs/translations/README.eg.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/translations/README.eg.md b/docs/translations/README.eg.md index 88a51e9a..e2a7fb9a 100644 --- a/docs/translations/README.eg.md +++ b/docs/translations/README.eg.md @@ -114,6 +114,31 @@ git push origin "add-your-name"
إستبدل <add-your-name> بإسم الفرع اللي انت لسة عامله .
+
+ لو عندك مشكلة وانت بتعمل push غالبا هتكون Authentication error + +- ### Authentication Error +
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
+  remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
+  fatal: Authentication failed for 'https://github.com//first-contributions.git/'
+ أسهل طريقة لحل المشكلة انك تعمل ssh key وتحطه علي GitHub + [GitHub's Tutorial - Create an ssh key](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent) + [GitHub's tutorial - adding ssh key to your account](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account) + بكده هتكون authenticated و مش هيكون عندك مشكلة لما تعمل push + + تقدر تتاكد انك بترفع علي الريبو الصح لما تكتب في ال + ```bash + git remote -v + ``` + لو ظهرلك كده: +
origin	https://github.com/your-username/your_repo.git (fetch)
+  origin	https://github.com/your-username/your_repo.git (push)
+ يبقي معندكش مشكلة + غير كده تقدر تغير ال remote address كده + ```bash + git remote set-url origin git@github.com:your-username/your_repo.git + ``` +

سلم تغيراتك للمراجعة