How do you update a git repository from Visual Studio?

Viewed 1424

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!

2 Answers

I figured it out finally, we need to "Stage changes" by clicking the "+" icon in the "Changes" section in the Git changes window (Accessed via clicking the "Commit or stash" option in the Git menu), then "Commit staged and Sync" in the combo box above it...

Hope this helps anyone in the future.

Related