Add local and remote Git commands for the PSPad editor (http://www.pspad.com/)
Copy the gitCommands.vbsfile into the Script\VBScript directory of where PSPad was installed on your PC which is by default C:\Program Files (x86)\PSPad editor\ in Windows7.
Quit and restart the PSPad editor.
You could press Scripts | Recompile scripts to make certain that no remaining errors occur.
The menu will look like this:
GIT should already be installed and available in the path environment variable, accessible from everywhere.
The first thing to do when Git is installed is to set your user name and email address.
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
This is important because every Git commit uses this information,
This information will be stored in the local file .git\config file
[user]
user.name=John Doe
user.email=johndoe@example.com
