Add existing code from the folder to GitHub repo
// Init git init git add . git commit -m "Init commit" // Attach to repo git remote add origin [email protected]:assendk/wordpress-docker-ssl.git // Test the connection git remote -v // Pull the changes from the remote repository git pull origin main --rebase // Push your files git push origin main // Check the files in your repository github // Add
Views: 2