Home > OS >  Is there a way to see which git commands Pycharm is running?
Is there a way to see which git commands Pycharm is running?

Time:09-23

I have been using git via Pycharm GUI, but recently I started doing some practice in using git from command line.
For some git actions I performed via Pycharm GUI, I would like to know the equivalent git lines of code.

Is there a way to see which git commands Pycharm have run?

To be clear, I would need something similar to the system that allows MS Excel to record macros, tracking down the lines of code that correspond to the actions performed via UI.

CodePudding user response:

Alt 9 would give you the git window for Pycharm (enter image description here

You can expand the commands that Pycharm uses by pressing on the borders after the git command, like so git -c ... (this would expand to the full command).

enter image description here

  • Related