Home > Net >  Push VS Code Project to GitHub with folders
Push VS Code Project to GitHub with folders

Time:10-03

I'm pretty new to GitHub, i searched all over the internet for pushing an entire project from Visual Studio Code to GitHub but I haven't found anything that would allow me to send, with the codes, the folders. Example : index.html is in Html\Version1\bin

How can I upload all this folders including what's inside assuming that there really is something inside? Thanks

CodePudding user response:

Have you created your local repository with git init ? And assigned the remote repository location?

#example set a new remote

git remote add my_awesome_new_remote_repo [email protected]:portfolio/space.space_name.git
  • Related