I'm not able to ( git push) files in apps folder

Hi @Abdullah_Yassin,

first, go to the app directory
then apply command

git add .
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/username/repositories_name.git
git push -u origin main

Then check it.


Reference:

Thank You!

2 Likes