Home > Net >  How do you update a git repository from Visual Studio?
How do you update a git repository from Visual Studio?

Time:12-12

I am new to Visual studio and am wondering how do you update a folder's contents stored in your local system into a specific Github repository?

I would also like to know how to update the folders present into the repository too.

Any help is appreciated!

CodePudding user response:

There is a tutorial on the github website. Take a look at: https://github.com/github/VisualStudio/blob/master/docs/using/publishing-an-existing-project-to-github.md

CodePudding user response:

I figured it out finally, we need to "Stage changes" by clicking the " " icon in the "Changes" section in Team explorer, then "Commit staged and Sync" in the combo box above it...

Hope this helps anyone in the future.

  • Related