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> بإسم الفرع اللي انت لسة عامله .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/+ أسهل طريقة لحل المشكلة انك تعمل 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 + ``` + لو ظهرلك كده: +/first-contributions.git/'
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 + ``` +