diff --git a/Git.php b/Git.php index 864e1ed..777fd1f 100755 --- a/Git.php +++ b/Git.php @@ -6,7 +6,7 @@ * A PHP git library * * @package Git.php - * @version 0.1.4 + * @version 0.1.5 * @author James Brumond * @copyright Copyright 2013 James Brumond * @repo http://github.com/kbjr/Git.php @@ -31,7 +31,7 @@ class Git { * * @var string */ - protected static $bin = '/usr/bin/git'; + protected static $bin = 'git'; /** * Sets git executable path @@ -49,13 +49,6 @@ public static function get_bin() { return self::$bin; } - /** - * Sets up library for use in a default Windows environment - */ - public static function windows_mode() { - self::set_bin('git'); - } - /** * Create a new git repository *