001package org.vishia.gitGui;
002
003/**This class contains the paths to some executable in the hard disk.
004 * @author Hartmut Schorrig
005 *
006 */
007public class GitGuiPaths {
008
009  /**The git linux shell, should be written with / */
010  public String gitsh_exe = "C:/Programs/Gitcmd/bin/sh.exe";
011  
012  /**Difftool, should be written with \ because it is used as Windows cmd invocation. */
013  public String diff_exe = "d:\\Programs\\WinMerge-2.12.4-exe\\WinMerge.exe";
014  
015  
016}