You are on page 1of 1

Subir proyecto local a Github

----------------------------------
-rquisito: tener instalado git

En la raiz de su proyecto ejecutar:

echo "# PHP-MVC-Framework-light" >> README.md


git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/wualtervera/PHP-MVC-Framework-light.git
git push -u origin main

------Subir cambios--------

git status
git add .
git commit -m "commit 2"
git push

You might also like