اذهب إلى المحتوى

السؤال

نشر

PS C:\Users\titans\Desktop\5-landing-pages> git push origin main
>>
Everything up-to-date

وعندما اذهب إلى المستودع لا أجد اي تغيرات  

وحاولت بطرق كثيرة 

مع انه عندما اقوم بتنفيذ الأمر git status يظهر لي الفرع الصحيح و ويظهرلي الن جميع الملفات يتب تعقبها وتكون بلون الأخضر فا لا أعرف سبب المشكلة  مع العلم انني استخدم Windows PowerShell المسؤول

 

اقتباس

Recommended Posts

  • 0
نشر

أرجو توفير صورة لما يحدث لديك في منفذ الأوامر والخطوات التي قمت بها لرفع المشروع أي ما هي الأوامر التي كتبتها.

وأيضًا عرض نتيجة الأمر التالي:

git remote show origin

مع توضيح رابط المستودع الخاص بك على github أيضًا.

ستجد هنا تفصيل لطريقة رفع المشاريع:

 

  • 0
نشر
بتاريخ 4 دقائق مضت قال أسامة عماد:

PS C:\Users\titans\Desktop\5-landing-pages> git push origin main
>>
Everything up-to-date

وعندما اذهب إلى المستودع لا أجد اي تغيرات  

وحاولت بطرق كثيرة 

مع انه عندما اقوم بتنفيذ الأمر git status يظهر لي الفرع الصحيح و ويظهرلي الن جميع الملفات يتب تعقبها وتكون بلون الأخضر فا لا أعرف سبب المشكلة  مع العلم انني استخدم Windows PowerShell المسؤول

وعليكم السلام ، أهلاً أسامة

يوجد عدة أسباب لهذا ، حاول تجريب هذه الطرق لحل الخطأ :

  • ربما تكون المشكلة في الفرع branch الذي تعمل عليه هو نفس الفرع الذي تدفع إليه ، تأكد منه باستخدام التعليمة التالية
    git branch
  • إذا كان الفرع الذي تريد أن تدفع إليه هو main ، فربما هناك بعض القيود تمنعك من ذلك ، حاول أنشاء فرع أخر ثم قم برفعه على Git ، يمكنك انشاء فرع أخر باستخدام التعليمة التالية
    git checkout -b "new-branch"	
  • قم بتنفيذ الأمر التالي للتحقق من أن التغييرات التي قمت بها قد تم إضافتها بالفعل إلى الـ staging area ، إذا كنت ترى التغييرات، فهذا يعني أن التغييرات تم إضافتها بشكل صحيح إلى الـ staging area ولا يوجد خطأ بها
    git diff --staged

    أيضاً تأكد من أنك قد قمت بتنفيذ commit للتعديلات ، حاول تنفيذ التعليمة التالية

    git commit -m "message, new commit"
  • ربما يوجد شيء جديد تم دفعه إلى المستودع البعيد ولم تقم بسحبه (pull). جرب أن تقوم بسحب آخر التغييرات من الفرع البعيد قبل دفع التغييرات
    git pull origin main

    ثم حاول دفع التغييرات مرة أخرى:

    git push origin main
  • تأكد من أن الـ remote (المستودع البعيد) مضبوط بشكل صحيح:
    git remote -v
  • 0
نشر

السلام عليكم ورحمة الله وبركاته لقد قصيت اليوم السابق كله وانا اجرب حلول كثيرة ولم تظبط لذالك حذفت المستودع وعملت مستودع جديد وهاذي هيا الأوامر التي كتبتها وايضا لم يظهر شيء على قيت هب 

PS C:\Users\titans\Desktop\5-landing-pages> 
 *  History restored 

                                            git init:\Users\titans\Desktop\5-landing-pages>
Initialized empty Git repository in C:/Users/titans/Desktop/5-landing-pages/.git/
PS C:\Users\titans\Desktop\5-landing-pages> git init
Reinitialized existing Git repository in C:/Users/titans/Desktop/5-landing-pages/.git/
PS C:\Users\titans\Desktop\5-landing-pages> git add .
PS C:\Users\titans\Desktop\5-landing-pages> git commit -m "first commit"
[master (root-commit) 7f363e3] first commit
 125 files changed, 5906 insertions(+)
 create mode 100644 agency/asset/countup.js/countUp.min.js
 create mode 100644 agency/css/style.css
 create mode 100644 agency/fonts/Cairo-Regular.ttf
 create mode 100644 agency/images/agency.psd
 create mode 100644 agency/images/bg-2.jpg
 create mode 100644 agency/images/bg.jpg
 create mode 100644 agency/images/feature-1.png
 create mode 100644 agency/images/feature-2.png
 create mode 100644 agency/images/feature-3.png
 create mode 100644 agency/images/gallery/1.jpg
 create mode 100644 agency/images/gallery/2.jpg
 create mode 100644 agency/images/gallery/3.jpg
 create mode 100644 agency/images/gallery/4.jpg
 create mode 100644 agency/images/gallery/5.jpg
 create mode 100644 agency/images/gallery/6.jpg
 create mode 100644 agency/images/gallery/7.jpg
 create mode 100644 agency/images/gallery/8.jpg
 create mode 100644 agency/images/icon1.png
 create mode 100644 agency/images/icon2.png
 create mode 100644 agency/images/icon3.png
 create mode 100644 agency/images/icon4.png
 create mode 100644 agency/images/logo.png
 create mode 100644 agency/index.html
 create mode 100644 agency/js/index.js
 create mode 100644 agency/videos/bg.mp4
 create mode 100644 agency/videos/video.mp4
 create mode 100644 coming soon/asset/bootstrap/bootstrap.rtl.min.css
 create mode 100644 coming soon/asset/bootstrap/js/bootstrap.min.js
 create mode 100644 coming soon/asset/bootstrap/js/popper.min.js
 create mode 100644 coming soon/asset/fontwasom/css/all.min.css
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-brands-400.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-brands-400.woff2
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-regular-400.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-regular-400.woff2
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-solid-900.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-solid-900.woff2
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-v4compatibility.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-v4compatibility.woff2
 create mode 100644 coming soon/css/style.css
 create mode 100644 coming soon/fonts/Cairo-SemiBold.ttf
 create mode 100644 coming soon/images/coming-soon.psd
 create mode 100644 coming soon/images/footer-bg.jpg
 create mode 100644 coming soon/images/fork.png
 create mode 100644 coming soon/images/header.jpg
 create mode 100644 coming soon/images/logo1.png
 create mode 100644 coming soon/images/logo2.png
 create mode 100644 coming soon/images/mail.png
 create mode 100644 coming soon/images/person-plus.png
 create mode 100644 coming soon/images/phone.png
 create mode 100644 coming soon/images/photo.png
 create mode 100644 coming soon/images/prush.png
 create mode 100644 coming soon/images/send1.png
 create mode 100644 coming soon/images/send2.png
 create mode 100644 coming soon/index.html
 create mode 100644 coming soon/js/index.js
 create mode 100644 mobile/css/style.css
 create mode 100644 mobile/fonts/Cairo-Regular.ttf
 create mode 100644 mobile/images/Download_on_the_App_Store_Badge_AR_RGB_blk_102417.svg
 create mode 100644 mobile/images/bg-2.jpg
 create mode 100644 mobile/images/bg.jpg
 create mode 100644 mobile/images/google-play-badge.png
 create mode 100644 mobile/images/icon.png
 create mode 100644 mobile/images/icons/1.png
 create mode 100644 mobile/images/icons/2.png
 create mode 100644 mobile/images/icons/3.png
 create mode 100644 mobile/images/mobile-3.png
 create mode 100644 mobile/images/mobile-app.psd
 create mode 100644 mobile/images/mobile.png
 create mode 100644 mobile/images/mobile2.png
 create mode 100644 mobile/images/slider/mobile1.png
 create mode 100644 mobile/images/slider/mobile2.png
 create mode 100644 mobile/index.html
 create mode 100644 mobile/js/index.js
 create mode 100644 portfolio/asset/jquery-circle-progress/circle-progress.min.js
 create mode 100644 portfolio/asset/jquery-validate/jquery.validate.min.js
 create mode 100644 portfolio/asset/jquery-validate/localization/messages_ar.js
 create mode 100644 portfolio/asset/jquery-validate/localization/messages_ar.min.js
 create mode 100644 portfolio/asset/jquery/jquery.min.js
 create mode 100644 portfolio/css/style.css
 create mode 100644 portfolio/file/cv.pdf
 create mode 100644 portfolio/images/Portfolio.psd
 create mode 100644 portfolio/images/bg-1.jpg
 create mode 100644 portfolio/images/bg-2.jpg
 create mode 100644 portfolio/images/bg-3.jpg
 create mode 100644 portfolio/images/gallery/1.jpg
 create mode 100644 portfolio/images/gallery/2.jpg
 create mode 100644 portfolio/images/gallery/3.jpg
 create mode 100644 portfolio/images/gallery/4.jpg
 create mode 100644 portfolio/images/gallery/5.jpg
 create mode 100644 portfolio/images/gallery/6.jpg
 create mode 100644 portfolio/images/portfolio.png
 create mode 100644 portfolio/images/profile.jpg
 create mode 100644 portfolio/images/slider/1.jpg
 create mode 100644 portfolio/images/slider/2.jpg
 create mode 100644 portfolio/images/slider/3.jpg
 create mode 100644 portfolio/images/slider/4.jpg
 create mode 100644 portfolio/index.html
 create mode 100644 portfolio/js/index.js
 create mode 100644 product/asset/bootstrap/bootstrap.rtl.min.css
 create mode 100644 product/asset/bootstrap/js/bootstrap.min.js
 create mode 100644 product/asset/bootstrap/js/popper.min.js
 create mode 100644 product/asset/fontwasom/css/all.min.css
 create mode 100644 product/asset/fontwasom/webfonts/fa-brands-400.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-brands-400.woff2
 create mode 100644 product/asset/fontwasom/webfonts/fa-regular-400.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-regular-400.woff2
 create mode 100644 product/asset/fontwasom/webfonts/fa-solid-900.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-solid-900.woff2
 create mode 100644 product/asset/fontwasom/webfonts/fa-v4compatibility.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-v4compatibility.woff2
 create mode 100644 product/css/style.css
 create mode 100644 product/fonts/Cairo-Regular.ttf
 create mode 100644 product/images/blog-1.png
 create mode 100644 product/images/blog-2.png
 create mode 100644 product/images/label.png
 create mode 100644 product/images/logo.png
 create mode 100644 product/images/product.png
 create mode 100644 product/images/product.psd
 create mode 100644 product/images/tablet-1.png
 create mode 100644 product/images/tablet-2.png
 create mode 100644 product/images/tablet-3.png
 create mode 100644 product/index.html
 create mode 100644 product/js/index.js
 create mode 100644 product/videos/bg.mp4
 create mode 100644 product/videos/video.mp4
PS C:\Users\titans\Desktop\5-landing-pages> git branch -M main
PS C:\Users\titans\Desktop\5-landing-pages> git remote add origin https://github.com/OsamaCoding/5-landing-page.git
>> git push -u origin main
Enumerating objects: 153, done.
Counting objects: 100% (153/153), done.
Delta compression using up to 16 threads
Compressing objects: 100% (136/136), done.
Writing objects: 100% (153/153), 132.08 MiB | 15.40 MiB/s, done.
Total 153 (delta 15), reused 0 (delta 0), pack-reused 0 (from 0)
PS C:\Users\titans\Desktop\5-landing-pages> git remote add origin https://github.com/OsamaCoding/5-landing-page.git
>> git push -u origin main
error: remote origin already exists.
Enumerating objects: 153, done.
Counting objects: 100% (153/153), done.
Delta compression using up to 16 threads
Compressing objects: 100% (136/136), done.
Writing objects: 100% (153/153), 132.08 MiB | 15.11 MiB/s, done.
Total 153 (delta 15), reused 0 (delta 0), pack-reused 0 (from 0)
PS C:\Users\titans\Desktop\5-landing-pages> git pull 
>> 
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.

    git pull <remote> <branch>

If you wish to set tracking information for this branch you can do so with:

    git branch --set-upstream-to=origin/<branch> main

PS C:\Users\titans\Desktop\5-landing-pages> git remote -v
>>
origin https://github.com/OsamaCoding/5-landing-page.git (fetch)
origin https://github.com/OsamaCoding/5-landing-page.git (push)
PS C:\Users\titans\Desktop\5-landing-pages> git branch --set-upstream-to=origin/main main
>>
fatal: the requested upstream branch 'origin/main' does not exist
hint:
hint: If you are planning on basing your work on an upstream
hint: branch that already exists at the remote, you may need to
hint: run "git fetch" to retrieve it.
hint:
hint: If you are planning to push out a new local branch that
hint: will track its remote counterpart, you may want to use
hint: "git push -u" to set the upstream config as you push.
hint: Disable this message with "git config advice.setUpstreamFailure false"
PS C:\Users\titans\Desktop\5-landing-pages> git pull
>>
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.

    git pull <remote> <branch>

If you wish to set tracking information for this branch you can do so with:

    git branch --set-upstream-to=origin/<branch> main

PS C:\Users\titans\Desktop\5-landing-pages> git fetch origin
>>
PS C:\Users\titans\Desktop\5-landing-pages> git branch -r
>>
PS C:\Users\titans\Desktop\5-landing-pages> git push -u origin main
>>
Enumerating objects: 153, done.
Counting objects: 100% (153/153), done.
Delta compression using up to 16 threads
Compressing objects: 100% (136/136), done.
Writing objects: 100% (153/153), 132.08 MiB | 15.45 MiB/s, done.
Total 153 (delta 15), reused 0 (delta 0), pack-reused 0 (from 0)
PS C:\Users\titans\Desktop\5-landing-pages> git status                                                                          
On branch main
nothing to commit, working tree clean
PS C:\Users\titans\Desktop\5-landing-pages> 

  • 0
نشر
بتاريخ 8 دقائق مضت قال أسامة عماد:

السلام عليكم ورحمة الله وبركاته لقد قصيت اليوم السابق كله وانا اجرب حلول كثيرة ولم تظبط لذالك حذفت المستودع وعملت مستودع جديد وهاذي هيا الأوامر التي كتبتها وايضا لم يظهر شيء على قيت هب 

PS C:\Users\titans\Desktop\5-landing-pages> 
 *  History restored 

                                            git init:\Users\titans\Desktop\5-landing-pages>
Initialized empty Git repository in C:/Users/titans/Desktop/5-landing-pages/.git/
PS C:\Users\titans\Desktop\5-landing-pages> git init
Reinitialized existing Git repository in C:/Users/titans/Desktop/5-landing-pages/.git/
PS C:\Users\titans\Desktop\5-landing-pages> git add .
PS C:\Users\titans\Desktop\5-landing-pages> git commit -m "first commit"
[master (root-commit) 7f363e3] first commit
 125 files changed, 5906 insertions(+)
 create mode 100644 agency/asset/countup.js/countUp.min.js
 create mode 100644 agency/css/style.css
 create mode 100644 agency/fonts/Cairo-Regular.ttf
 create mode 100644 agency/images/agency.psd
 create mode 100644 agency/images/bg-2.jpg
 create mode 100644 agency/images/bg.jpg
 create mode 100644 agency/images/feature-1.png
 create mode 100644 agency/images/feature-2.png
 create mode 100644 agency/images/feature-3.png
 create mode 100644 agency/images/gallery/1.jpg
 create mode 100644 agency/images/gallery/2.jpg
 create mode 100644 agency/images/gallery/3.jpg
 create mode 100644 agency/images/gallery/4.jpg
 create mode 100644 agency/images/gallery/5.jpg
 create mode 100644 agency/images/gallery/6.jpg
 create mode 100644 agency/images/gallery/7.jpg
 create mode 100644 agency/images/gallery/8.jpg
 create mode 100644 agency/images/icon1.png
 create mode 100644 agency/images/icon2.png
 create mode 100644 agency/images/icon3.png
 create mode 100644 agency/images/icon4.png
 create mode 100644 agency/images/logo.png
 create mode 100644 agency/index.html
 create mode 100644 agency/js/index.js
 create mode 100644 agency/videos/bg.mp4
 create mode 100644 agency/videos/video.mp4
 create mode 100644 coming soon/asset/bootstrap/bootstrap.rtl.min.css
 create mode 100644 coming soon/asset/bootstrap/js/bootstrap.min.js
 create mode 100644 coming soon/asset/bootstrap/js/popper.min.js
 create mode 100644 coming soon/asset/fontwasom/css/all.min.css
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-brands-400.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-brands-400.woff2
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-regular-400.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-regular-400.woff2
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-solid-900.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-solid-900.woff2
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-v4compatibility.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-v4compatibility.woff2
 create mode 100644 coming soon/css/style.css
 create mode 100644 coming soon/fonts/Cairo-SemiBold.ttf
 create mode 100644 coming soon/images/coming-soon.psd
 create mode 100644 coming soon/images/footer-bg.jpg
 create mode 100644 coming soon/images/fork.png
 create mode 100644 coming soon/images/header.jpg
 create mode 100644 coming soon/images/logo1.png
 create mode 100644 coming soon/images/logo2.png
 create mode 100644 coming soon/images/mail.png
 create mode 100644 coming soon/images/person-plus.png
 create mode 100644 coming soon/images/phone.png
 create mode 100644 coming soon/images/photo.png
 create mode 100644 coming soon/images/prush.png
 create mode 100644 coming soon/images/send1.png
 create mode 100644 coming soon/images/send2.png
 create mode 100644 coming soon/index.html
 create mode 100644 coming soon/js/index.js
 create mode 100644 mobile/css/style.css
 create mode 100644 mobile/fonts/Cairo-Regular.ttf
 create mode 100644 mobile/images/Download_on_the_App_Store_Badge_AR_RGB_blk_102417.svg
 create mode 100644 mobile/images/bg-2.jpg
 create mode 100644 mobile/images/bg.jpg
 create mode 100644 mobile/images/google-play-badge.png
 create mode 100644 mobile/images/icon.png
 create mode 100644 mobile/images/icons/1.png
 create mode 100644 mobile/images/icons/2.png
 create mode 100644 mobile/images/icons/3.png
 create mode 100644 mobile/images/mobile-3.png
 create mode 100644 mobile/images/mobile-app.psd
 create mode 100644 mobile/images/mobile.png
 create mode 100644 mobile/images/mobile2.png
 create mode 100644 mobile/images/slider/mobile1.png
 create mode 100644 mobile/images/slider/mobile2.png
 create mode 100644 mobile/index.html
 create mode 100644 mobile/js/index.js
 create mode 100644 portfolio/asset/jquery-circle-progress/circle-progress.min.js
 create mode 100644 portfolio/asset/jquery-validate/jquery.validate.min.js
 create mode 100644 portfolio/asset/jquery-validate/localization/messages_ar.js
 create mode 100644 portfolio/asset/jquery-validate/localization/messages_ar.min.js
 create mode 100644 portfolio/asset/jquery/jquery.min.js
 create mode 100644 portfolio/css/style.css
 create mode 100644 portfolio/file/cv.pdf
 create mode 100644 portfolio/images/Portfolio.psd
 create mode 100644 portfolio/images/bg-1.jpg
 create mode 100644 portfolio/images/bg-2.jpg
 create mode 100644 portfolio/images/bg-3.jpg
 create mode 100644 portfolio/images/gallery/1.jpg
 create mode 100644 portfolio/images/gallery/2.jpg
 create mode 100644 portfolio/images/gallery/3.jpg
 create mode 100644 portfolio/images/gallery/4.jpg
 create mode 100644 portfolio/images/gallery/5.jpg
 create mode 100644 portfolio/images/gallery/6.jpg
 create mode 100644 portfolio/images/portfolio.png
 create mode 100644 portfolio/images/profile.jpg
 create mode 100644 portfolio/images/slider/1.jpg
 create mode 100644 portfolio/images/slider/2.jpg
 create mode 100644 portfolio/images/slider/3.jpg
 create mode 100644 portfolio/images/slider/4.jpg
 create mode 100644 portfolio/index.html
 create mode 100644 portfolio/js/index.js
 create mode 100644 product/asset/bootstrap/bootstrap.rtl.min.css
 create mode 100644 product/asset/bootstrap/js/bootstrap.min.js
 create mode 100644 product/asset/bootstrap/js/popper.min.js
 create mode 100644 product/asset/fontwasom/css/all.min.css
 create mode 100644 product/asset/fontwasom/webfonts/fa-brands-400.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-brands-400.woff2
 create mode 100644 product/asset/fontwasom/webfonts/fa-regular-400.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-regular-400.woff2
 create mode 100644 product/asset/fontwasom/webfonts/fa-solid-900.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-solid-900.woff2
 create mode 100644 product/asset/fontwasom/webfonts/fa-v4compatibility.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-v4compatibility.woff2
 create mode 100644 product/css/style.css
 create mode 100644 product/fonts/Cairo-Regular.ttf
 create mode 100644 product/images/blog-1.png
 create mode 100644 product/images/blog-2.png
 create mode 100644 product/images/label.png
 create mode 100644 product/images/logo.png
 create mode 100644 product/images/product.png
 create mode 100644 product/images/product.psd
 create mode 100644 product/images/tablet-1.png
 create mode 100644 product/images/tablet-2.png
 create mode 100644 product/images/tablet-3.png
 create mode 100644 product/index.html
 create mode 100644 product/js/index.js
 create mode 100644 product/videos/bg.mp4
 create mode 100644 product/videos/video.mp4
PS C:\Users\titans\Desktop\5-landing-pages> git branch -M main
PS C:\Users\titans\Desktop\5-landing-pages> git remote add origin https://github.com/OsamaCoding/5-landing-page.git
>> git push -u origin main
Enumerating objects: 153, done.
Counting objects: 100% (153/153), done.
Delta compression using up to 16 threads
Compressing objects: 100% (136/136), done.
Writing objects: 100% (153/153), 132.08 MiB | 15.40 MiB/s, done.
Total 153 (delta 15), reused 0 (delta 0), pack-reused 0 (from 0)
PS C:\Users\titans\Desktop\5-landing-pages> git remote add origin https://github.com/OsamaCoding/5-landing-page.git
>> git push -u origin main
error: remote origin already exists.
Enumerating objects: 153, done.
Counting objects: 100% (153/153), done.
Delta compression using up to 16 threads
Compressing objects: 100% (136/136), done.
Writing objects: 100% (153/153), 132.08 MiB | 15.11 MiB/s, done.
Total 153 (delta 15), reused 0 (delta 0), pack-reused 0 (from 0)
PS C:\Users\titans\Desktop\5-landing-pages> git pull 
>> 
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.

    git pull <remote> <branch>

If you wish to set tracking information for this branch you can do so with:

    git branch --set-upstream-to=origin/<branch> main

PS C:\Users\titans\Desktop\5-landing-pages> git remote -v
>>
origin https://github.com/OsamaCoding/5-landing-page.git (fetch)
origin https://github.com/OsamaCoding/5-landing-page.git (push)
PS C:\Users\titans\Desktop\5-landing-pages> git branch --set-upstream-to=origin/main main
>>
fatal: the requested upstream branch 'origin/main' does not exist
hint:
hint: If you are planning on basing your work on an upstream
hint: branch that already exists at the remote, you may need to
hint: run "git fetch" to retrieve it.
hint:
hint: If you are planning to push out a new local branch that
hint: will track its remote counterpart, you may want to use
hint: "git push -u" to set the upstream config as you push.
hint: Disable this message with "git config advice.setUpstreamFailure false"
PS C:\Users\titans\Desktop\5-landing-pages> git pull
>>
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.

    git pull <remote> <branch>

If you wish to set tracking information for this branch you can do so with:

    git branch --set-upstream-to=origin/<branch> main

PS C:\Users\titans\Desktop\5-landing-pages> git fetch origin
>>
PS C:\Users\titans\Desktop\5-landing-pages> git branch -r
>>
PS C:\Users\titans\Desktop\5-landing-pages> git push -u origin main
>>
Enumerating objects: 153, done.
Counting objects: 100% (153/153), done.
Delta compression using up to 16 threads
Compressing objects: 100% (136/136), done.
Writing objects: 100% (153/153), 132.08 MiB | 15.45 MiB/s, done.
Total 153 (delta 15), reused 0 (delta 0), pack-reused 0 (from 0)
PS C:\Users\titans\Desktop\5-landing-pages> git status                                                                          
On branch main
nothing to commit, working tree clean
PS C:\Users\titans\Desktop\5-landing-pages> 

وعليكم السلام ورحمة الله وبركاته.

يرجى أولا الذهاب إلى مجلد المشروع ستجد مجلد بإسم git. يرجى حذف هذا المجلد وإعادة الخطوات مجددا كالتالي :

git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/OsamaCoding/5-landing-page.git
git push -u origin main

إذا ظهرت أى مشكلة في تنفيذ أى أمر من السابق يرجى إرفاق الخطأ الذي ظهر لك مباشرة حتى نرى أين المشكلة ويرجى عدم تنفيذ أى أمر أخر حتى لا تحدث تداخلات ومشاكل لديك .

وأيضا الأهم هو حذف ملف git. أولا كما أخبرتك.

  • 0
نشر
بتاريخ 19 دقائق مضت قال محمد عاطف17:

وعليكم السلام ورحمة الله وبركاته.

يرجى أولا الذهاب إلى مجلد المشروع ستجد مجلد بإسم git. يرجى حذف هذا المجلد وإعادة الخطوات مجددا كالتالي :

git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/OsamaCoding/5-landing-page.git
git push -u origin main

إذا ظهرت أى مشكلة في تنفيذ أى أمر من السابق يرجى إرفاق الخطأ الذي ظهر لك مباشرة حتى نرى أين المشكلة ويرجى عدم تنفيذ أى أمر أخر حتى لا تحدث تداخلات ومشاكل لديك .

وأيضا الأهم هو حذف ملف git. أولا كما أخبرتك.

حسنا حذفت ملف قيت 

وهاذي هي الأوامر 

PS C:\Users\titans\Desktop\5-landing-pages> git init
>> git add .
>> git commit -m "first commit"
>> git branch -M main
>> git remote add origin https://github.com/OsamaCoding/5-landing-page.git
>> git push -u origin main
Initialized empty Git repository in C:/Users/titans/Desktop/5-landing-pages/.git/
[master (root-commit) 79bc323] first commit
 125 files changed, 5906 insertions(+)
 create mode 100644 agency/asset/countup.js/countUp.min.js
 create mode 100644 agency/css/style.css
 create mode 100644 agency/fonts/Cairo-Regular.ttf
 create mode 100644 agency/images/agency.psd
 create mode 100644 agency/images/bg-2.jpg
 create mode 100644 agency/images/bg.jpg
 create mode 100644 agency/images/feature-1.png
 create mode 100644 agency/images/feature-2.png
 create mode 100644 agency/images/feature-3.png
 create mode 100644 agency/images/gallery/1.jpg
 create mode 100644 agency/images/gallery/2.jpg
 create mode 100644 agency/images/gallery/3.jpg
 create mode 100644 agency/images/gallery/4.jpg
 create mode 100644 agency/images/gallery/5.jpg
 create mode 100644 agency/images/gallery/6.jpg
 create mode 100644 agency/images/gallery/7.jpg
 create mode 100644 agency/images/gallery/8.jpg
 create mode 100644 agency/images/icon1.png
 create mode 100644 agency/images/icon2.png
 create mode 100644 agency/images/icon3.png
 create mode 100644 agency/images/icon4.png
 create mode 100644 agency/images/logo.png
 create mode 100644 agency/index.html
 create mode 100644 agency/js/index.js
 create mode 100644 agency/videos/bg.mp4
 create mode 100644 agency/videos/video.mp4
 create mode 100644 coming soon/asset/bootstrap/bootstrap.rtl.min.css
 create mode 100644 coming soon/asset/bootstrap/js/bootstrap.min.js
 create mode 100644 coming soon/asset/bootstrap/js/popper.min.js
 create mode 100644 coming soon/asset/fontwasom/css/all.min.css
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-brands-400.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-brands-400.woff2
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-regular-400.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-regular-400.woff2
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-solid-900.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-solid-900.woff2
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-v4compatibility.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-v4compatibility.woff2
 create mode 100644 coming soon/css/style.css
 create mode 100644 coming soon/fonts/Cairo-SemiBold.ttf
 create mode 100644 coming soon/images/coming-soon.psd
 create mode 100644 coming soon/images/footer-bg.jpg
 create mode 100644 coming soon/images/fork.png
 create mode 100644 coming soon/images/header.jpg
 create mode 100644 coming soon/images/logo1.png
 create mode 100644 coming soon/images/logo2.png
 create mode 100644 coming soon/images/mail.png
 create mode 100644 coming soon/images/person-plus.png
 create mode 100644 coming soon/images/phone.png
 create mode 100644 coming soon/images/photo.png
 create mode 100644 coming soon/images/prush.png
 create mode 100644 coming soon/images/send1.png
 create mode 100644 coming soon/images/send2.png
 create mode 100644 coming soon/index.html
 create mode 100644 coming soon/js/index.js
 create mode 100644 mobile/css/style.css
 create mode 100644 mobile/fonts/Cairo-Regular.ttf
 create mode 100644 mobile/images/Download_on_the_App_Store_Badge_AR_RGB_blk_102417.svg
 create mode 100644 mobile/images/bg-2.jpg
 create mode 100644 mobile/images/bg.jpg
 create mode 100644 mobile/images/google-play-badge.png
 create mode 100644 mobile/images/icon.png
 create mode 100644 mobile/images/icons/1.png
 create mode 100644 mobile/images/icons/2.png
 create mode 100644 mobile/images/icons/3.png
 create mode 100644 mobile/images/mobile-3.png
 create mode 100644 mobile/images/mobile-app.psd
 create mode 100644 mobile/images/mobile.png
 create mode 100644 mobile/images/mobile2.png
 create mode 100644 mobile/images/slider/mobile1.png
 create mode 100644 mobile/images/slider/mobile2.png
 create mode 100644 mobile/index.html
 create mode 100644 mobile/js/index.js
 create mode 100644 portfolio/asset/jquery-circle-progress/circle-progress.min.js
 create mode 100644 portfolio/asset/jquery-validate/jquery.validate.min.js
 create mode 100644 portfolio/asset/jquery-validate/localization/messages_ar.js
 create mode 100644 portfolio/asset/jquery-validate/localization/messages_ar.min.js
 create mode 100644 portfolio/asset/jquery/jquery.min.js
 create mode 100644 portfolio/css/style.css
 create mode 100644 portfolio/file/cv.pdf
 create mode 100644 portfolio/images/Portfolio.psd
 create mode 100644 portfolio/images/bg-1.jpg
 create mode 100644 portfolio/images/bg-2.jpg
 create mode 100644 portfolio/images/bg-3.jpg
 create mode 100644 portfolio/images/gallery/1.jpg
 create mode 100644 portfolio/images/gallery/2.jpg
 create mode 100644 portfolio/images/gallery/3.jpg
 create mode 100644 portfolio/images/gallery/4.jpg
 create mode 100644 portfolio/images/gallery/5.jpg
 create mode 100644 portfolio/images/gallery/6.jpg
 create mode 100644 portfolio/images/portfolio.png
 create mode 100644 portfolio/images/profile.jpg
 create mode 100644 portfolio/images/slider/1.jpg
 create mode 100644 portfolio/images/slider/2.jpg
 create mode 100644 portfolio/images/slider/3.jpg
 create mode 100644 portfolio/images/slider/4.jpg
 create mode 100644 portfolio/index.html
 create mode 100644 portfolio/js/index.js
 create mode 100644 product/asset/bootstrap/bootstrap.rtl.min.css
 create mode 100644 product/asset/bootstrap/js/bootstrap.min.js
 create mode 100644 product/asset/bootstrap/js/popper.min.js
 create mode 100644 product/asset/fontwasom/css/all.min.css
 create mode 100644 product/asset/fontwasom/webfonts/fa-brands-400.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-brands-400.woff2
 create mode 100644 product/asset/fontwasom/webfonts/fa-regular-400.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-regular-400.woff2
 create mode 100644 product/asset/fontwasom/webfonts/fa-solid-900.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-solid-900.woff2
 create mode 100644 product/asset/fontwasom/webfonts/fa-v4compatibility.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-v4compatibility.woff2
 create mode 100644 product/css/style.css
 create mode 100644 product/fonts/Cairo-Regular.ttf
 create mode 100644 product/images/blog-1.png
 create mode 100644 product/images/blog-2.png
 create mode 100644 product/images/label.png
 create mode 100644 product/images/logo.png
 create mode 100644 product/images/product.png
 create mode 100644 product/images/product.psd
 create mode 100644 product/images/tablet-1.png
 create mode 100644 product/images/tablet-2.png
 create mode 100644 product/images/tablet-3.png
 create mode 100644 product/index.html
 create mode 100644 product/js/index.js
 create mode 100644 product/videos/bg.mp4
 create mode 100644 product/videos/video.mp4
Enumerating objects: 153, done.
Counting objects: 100% (153/153), done.
Delta compression using up to 16 threads
Compressing objects: 100% (136/136), done.
Writing objects: 100% (153/153), 132.08 MiB | 15.48 MiB/s, done.
 Total 153 (delta 15), reused 0 (delta 0), pack-reused 0 (from 0)
 

يرجى العلم اني عدلت على ملف .gitconfig سابقا وهاذه هو 

والسبب ان شات جبتي كان قد اخبرني انه لديك مشكلة في الأمان 

.gitconfig

  • 0
نشر
بتاريخ 2 دقائق مضت قال أسامة عماد:

حسنا حذفت ملف قيت 

وهاذي هي الأوامر 

PS C:\Users\titans\Desktop\5-landing-pages> git init
>> git add .
>> git commit -m "first commit"
>> git branch -M main
>> git remote add origin https://github.com/OsamaCoding/5-landing-page.git
>> git push -u origin main
Initialized empty Git repository in C:/Users/titans/Desktop/5-landing-pages/.git/
[master (root-commit) 79bc323] first commit
 125 files changed, 5906 insertions(+)
 create mode 100644 agency/asset/countup.js/countUp.min.js
 create mode 100644 agency/css/style.css
 create mode 100644 agency/fonts/Cairo-Regular.ttf
 create mode 100644 agency/images/agency.psd
 create mode 100644 agency/images/bg-2.jpg
 create mode 100644 agency/images/bg.jpg
 create mode 100644 agency/images/feature-1.png
 create mode 100644 agency/images/feature-2.png
 create mode 100644 agency/images/feature-3.png
 create mode 100644 agency/images/gallery/1.jpg
 create mode 100644 agency/images/gallery/2.jpg
 create mode 100644 agency/images/gallery/3.jpg
 create mode 100644 agency/images/gallery/4.jpg
 create mode 100644 agency/images/gallery/5.jpg
 create mode 100644 agency/images/gallery/6.jpg
 create mode 100644 agency/images/gallery/7.jpg
 create mode 100644 agency/images/gallery/8.jpg
 create mode 100644 agency/images/icon1.png
 create mode 100644 agency/images/icon2.png
 create mode 100644 agency/images/icon3.png
 create mode 100644 agency/images/icon4.png
 create mode 100644 agency/images/logo.png
 create mode 100644 agency/index.html
 create mode 100644 agency/js/index.js
 create mode 100644 agency/videos/bg.mp4
 create mode 100644 agency/videos/video.mp4
 create mode 100644 coming soon/asset/bootstrap/bootstrap.rtl.min.css
 create mode 100644 coming soon/asset/bootstrap/js/bootstrap.min.js
 create mode 100644 coming soon/asset/bootstrap/js/popper.min.js
 create mode 100644 coming soon/asset/fontwasom/css/all.min.css
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-brands-400.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-brands-400.woff2
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-regular-400.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-regular-400.woff2
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-solid-900.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-solid-900.woff2
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-v4compatibility.ttf
 create mode 100644 coming soon/asset/fontwasom/webfonts/fa-v4compatibility.woff2
 create mode 100644 coming soon/css/style.css
 create mode 100644 coming soon/fonts/Cairo-SemiBold.ttf
 create mode 100644 coming soon/images/coming-soon.psd
 create mode 100644 coming soon/images/footer-bg.jpg
 create mode 100644 coming soon/images/fork.png
 create mode 100644 coming soon/images/header.jpg
 create mode 100644 coming soon/images/logo1.png
 create mode 100644 coming soon/images/logo2.png
 create mode 100644 coming soon/images/mail.png
 create mode 100644 coming soon/images/person-plus.png
 create mode 100644 coming soon/images/phone.png
 create mode 100644 coming soon/images/photo.png
 create mode 100644 coming soon/images/prush.png
 create mode 100644 coming soon/images/send1.png
 create mode 100644 coming soon/images/send2.png
 create mode 100644 coming soon/index.html
 create mode 100644 coming soon/js/index.js
 create mode 100644 mobile/css/style.css
 create mode 100644 mobile/fonts/Cairo-Regular.ttf
 create mode 100644 mobile/images/Download_on_the_App_Store_Badge_AR_RGB_blk_102417.svg
 create mode 100644 mobile/images/bg-2.jpg
 create mode 100644 mobile/images/bg.jpg
 create mode 100644 mobile/images/google-play-badge.png
 create mode 100644 mobile/images/icon.png
 create mode 100644 mobile/images/icons/1.png
 create mode 100644 mobile/images/icons/2.png
 create mode 100644 mobile/images/icons/3.png
 create mode 100644 mobile/images/mobile-3.png
 create mode 100644 mobile/images/mobile-app.psd
 create mode 100644 mobile/images/mobile.png
 create mode 100644 mobile/images/mobile2.png
 create mode 100644 mobile/images/slider/mobile1.png
 create mode 100644 mobile/images/slider/mobile2.png
 create mode 100644 mobile/index.html
 create mode 100644 mobile/js/index.js
 create mode 100644 portfolio/asset/jquery-circle-progress/circle-progress.min.js
 create mode 100644 portfolio/asset/jquery-validate/jquery.validate.min.js
 create mode 100644 portfolio/asset/jquery-validate/localization/messages_ar.js
 create mode 100644 portfolio/asset/jquery-validate/localization/messages_ar.min.js
 create mode 100644 portfolio/asset/jquery/jquery.min.js
 create mode 100644 portfolio/css/style.css
 create mode 100644 portfolio/file/cv.pdf
 create mode 100644 portfolio/images/Portfolio.psd
 create mode 100644 portfolio/images/bg-1.jpg
 create mode 100644 portfolio/images/bg-2.jpg
 create mode 100644 portfolio/images/bg-3.jpg
 create mode 100644 portfolio/images/gallery/1.jpg
 create mode 100644 portfolio/images/gallery/2.jpg
 create mode 100644 portfolio/images/gallery/3.jpg
 create mode 100644 portfolio/images/gallery/4.jpg
 create mode 100644 portfolio/images/gallery/5.jpg
 create mode 100644 portfolio/images/gallery/6.jpg
 create mode 100644 portfolio/images/portfolio.png
 create mode 100644 portfolio/images/profile.jpg
 create mode 100644 portfolio/images/slider/1.jpg
 create mode 100644 portfolio/images/slider/2.jpg
 create mode 100644 portfolio/images/slider/3.jpg
 create mode 100644 portfolio/images/slider/4.jpg
 create mode 100644 portfolio/index.html
 create mode 100644 portfolio/js/index.js
 create mode 100644 product/asset/bootstrap/bootstrap.rtl.min.css
 create mode 100644 product/asset/bootstrap/js/bootstrap.min.js
 create mode 100644 product/asset/bootstrap/js/popper.min.js
 create mode 100644 product/asset/fontwasom/css/all.min.css
 create mode 100644 product/asset/fontwasom/webfonts/fa-brands-400.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-brands-400.woff2
 create mode 100644 product/asset/fontwasom/webfonts/fa-regular-400.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-regular-400.woff2
 create mode 100644 product/asset/fontwasom/webfonts/fa-solid-900.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-solid-900.woff2
 create mode 100644 product/asset/fontwasom/webfonts/fa-v4compatibility.ttf
 create mode 100644 product/asset/fontwasom/webfonts/fa-v4compatibility.woff2
 create mode 100644 product/css/style.css
 create mode 100644 product/fonts/Cairo-Regular.ttf
 create mode 100644 product/images/blog-1.png
 create mode 100644 product/images/blog-2.png
 create mode 100644 product/images/label.png
 create mode 100644 product/images/logo.png
 create mode 100644 product/images/product.png
 create mode 100644 product/images/product.psd
 create mode 100644 product/images/tablet-1.png
 create mode 100644 product/images/tablet-2.png
 create mode 100644 product/images/tablet-3.png
 create mode 100644 product/index.html
 create mode 100644 product/js/index.js
 create mode 100644 product/videos/bg.mp4
 create mode 100644 product/videos/video.mp4
Enumerating objects: 153, done.
Counting objects: 100% (153/153), done.
Delta compression using up to 16 threads
Compressing objects: 100% (136/136), done.
Writing objects: 100% (153/153), 132.08 MiB | 15.48 MiB/s, done.
 Total 153 (delta 15), reused 0 (delta 0), pack-reused 0 (from 0)
 

يرجى العلم اني عدلت على ملف .gitconfig سابقا وهاذه هو 

والسبب ان شات جبتي كان قد اخبرني انه لديك مشكلة في الأمان 

.gitconfig 255 B · 1 تنزيل

يرجى تحميل برنامج anydesk وإرسال ال address الخاص بك للدخول على جهازك ومحاولة حل المشكلة لك.

انضم إلى النقاش

يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.

زائر
أجب على هذا السؤال...

×   لقد أضفت محتوى بخط أو تنسيق مختلف.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   جرى استعادة المحتوى السابق..   امسح المحرر

×   You cannot paste images directly. Upload or insert images from URL.

  • إعلانات

  • تابعنا على



×
×
  • أضف...