AltStore
AltStore copied to clipboard
صفحة محرر نصوص برمجية
git init # تهيئة Git في المشروع
git add . # إضافة جميع الملفات
git commit -m "Initial commit" # إنشاء أول عملية commit
git remote add origin https://github.com/username/my-api-project.git # استبدل username باسم مستخدم GitHub الخاص بك
git push -u origin master # رفع الملفات إلى المستودع