0

This is the screenshot of git for windows when it starts up. I added some git.bash profile information and a few global commands as follows, based on the other questions asked on this site.


enter image description here

Please assist me in getting these to stop running when git starts up and assign sublime as the default text editor.

DennisWPaulsenJR
  • 465
  • 1
  • 5
  • 16
  • I would have a look at the [git book](https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration#coreeditor-nPTEiMsRI9), where it talks about configuration, and what exactly are you trying to accomplish with your .profile (or other shell startup file) file. It appears to have an error. (something is not found) – Thomas F Aug 17 '16 at 01:15
  • It seems that you have modified your text editor to be Sublime Text 3, which you don't have installed on the path in the error log. Please post your git.bash profile if possible. – Abhay Saraf Aug 17 '16 at 07:23

1 Answers1

1

Check the following:

  1. Make sure you have installed Sublime Text in the specified path.
  2. And you might need to use unix style path, see this question.
  3. Paths with spaces probably need to be quoted, here's an existing Q&A about how to make Sublime Text as default editor for Git, though a different topic, but the problem to solve is quite similar.
Community
  • 1
  • 1
ryenus
  • 15,711
  • 5
  • 56
  • 63