{"id":26468450,"url":"https://github.com/blonets/git-github-intro","last_synced_at":"2026-05-15T01:42:37.258Z","repository":{"id":235338731,"uuid":"710625348","full_name":"blonets/Git-Github-intro","owner":"blonets","description":"Guided to add repository to github via git","archived":false,"fork":false,"pushed_at":"2023-10-27T05:29:27.000Z","size":1,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-21T22:28:43.999Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blonets.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2023-10-27T05:07:21.000Z","updated_at":"2025-01-21T09:39:17.000Z","dependencies_parsed_at":"2024-04-23T05:25:34.801Z","dependency_job_id":"b466419e-e569-4215-8f09-ccbb85ba73ee","html_url":"https://github.com/blonets/Git-Github-intro","commit_stats":null,"previous_names":["blonets/git-github-intro"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/blonets/Git-Github-intro","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blonets%2FGit-Github-intro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blonets%2FGit-Github-intro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blonets%2FGit-Github-intro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blonets%2FGit-Github-intro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blonets","download_url":"https://codeload.github.com/blonets/Git-Github-intro/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blonets%2FGit-Github-intro/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33050703,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-19T15:18:37.898Z","updated_at":"2026-05-15T01:42:37.202Z","avatar_url":"https://github.com/blonets.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction to Git and GitHub\n## Coursera Guided Project\n#### Instructor: Amani Abbas\n---------------------------------------------------------\n\n##### أوامر موجه الأوامر\n##### CMD Commands\n\n| مهمته        |      الأمر     |\n| ------------- |:-------------|\n| معرفة المجلد الذي نعمل به حاليا                | pwd    |\n| تغيير المجلد الذي نعمل فيه                     | cd    |\n|الرجوع للمجلد الذي يحتوي على المجلد الذي نحن فيه| cd ..      |\n| عرض المجلدات والملفات                          | ls         |\n| عرض المجلدات والملفات حتى المخفية منها         | ls -a      |\n| عرض المجلدات فقط                               | dir        |\n| إنشاء مجلد جديد                                | mkdir      |\n| إنشاء ملف جديد                                 | touch      |\n| نسخ ملف                                        | cp         |\n| نسخ مجلد                                       | cp -r      |\n| مسح / حذف ملف                                  | rm         |\n| مسح / حذف مجلد فارغ                            | rmdir      |\n| مسح / حذف مجلد فيه ملفات ومجلدات أخرى          | rm -r      |\n| نقل ملف من مجلد لآخر أو تغيير اسمه              | mv         |\n| إظهار اليوم والتاريخ                           | date       |\n| إظهار دليل استخدام أمر معين                    | man        |\n| مسح الأوامر السابقة في نافذة موجه الأوامر        | clear      |\n| الخروج من موجه الأوامر                          | exit       |\n\n----------------------------------------------------------------\n\n##### Git أوامر\n##### Git Commands\n| مهمته        |      الأمر     |\n| ------------- |:-------------|\n| معرفة الإصدار الموجود على الجهاز                          | git --version |\n| ضبط الإعدادات مثل اسم المستخدم والبريد الالكتروني          | git --config  |\n| إنشاء مستودع جديد                                        | git init      |\n| Staging area  إضافة تعديلات أو ملف أو مجلد لمرحلة التهيئة | git add       |\n| حفظ التعديلات أو الملفات أو المجلدات الموجودة في مرحلة التهيئة للمستودع | git commit |\n| إظهار جميع التعديلات التي تم حفظها في المستودع سابقاً      | git log       |\n| إظهار جميع التعديلات التي لم يتم حفظها بعد أو في مرحلة التهيئة | git status |\n| ربط مستودع ريموت بمستودع محلي                    | git remote add origin |\n| GitHub رفع مستودع محلي لمستودع ريموت على موقع   | git push origin master |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblonets%2Fgit-github-intro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblonets%2Fgit-github-intro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblonets%2Fgit-github-intro/lists"}