1

I would like to get a context menu entry like Git Bash here, with an additional command processed.

The command I want to call is git clean -xdf --dry-run

What I have done so far is to add an extra entry in the regedit with the suffix -c <command>, but it is not working. The windows pops up and closes immediately.

enter image description here

enter image description here

enter image description here

Dominic Jonas
  • 4,717
  • 1
  • 34
  • 77

1 Answers1

0

The following command works, but it does not use the git bash. it uses the internal command prompt:

cmd.exe /C "git clean -xdf --dry-run -i"

Dominic Jonas
  • 4,717
  • 1
  • 34
  • 77