diff --git a/docs/translations/README.eg.md b/docs/translations/README.eg.md index 0acf7264..b1623aff 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 + ``` +

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