forked from git/git
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Performance profiling with Visual Studio
Johannes Schindelin edited this page Feb 13, 2017
·
2 revisions
A very powerful method to identify performance bottlenecks is performance profiling. Visual Studio (including the free-of-cost Community edition) offers convenient tools for that via the Debug>Performance Profiler... menu entry.
This space intentionally left blank for volunteers to fill in walkthroughs with screenshots, and links for further reading
- Open the "git.exe" file via File>Open
- Specify the arguments and the working directory via Debug>git Properties
- Debug>Performance Profiler...
Visual Studio obtains the debug information used in the output from ".pdb" files, but GCC does not generate debug information in that format.
However, the debug information can be extracted from the ".exe" files and be written out as ".pdb" file via the "cv2pdb" utility.
This is the Git for Windows wiki. See how-to-participate.