2

I am newbie to Github so I am not sure how to check the progress of uploading code to Github using Visual Studio (I am using 2019 version). If you know how to track it, please let me know, cause I did not see any notification of the uploading from Visual Studio yet. Thank you so much :).

1 Answers1

2

Considering the Team Explorer Synchronization own documentation page shows a video with Git commands from the command line, an alternative would be to push directly from the command line:

cd /path/to/repo
git push --progress

That would work considering the --progress option is more accurate since Git 2.10 up to Git 2.25.

The alternative would be to configure Visual Studio logs to include Git command execution, but that seems tedious to monitor and use.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250