spdr870 / gitextensions
- Source
- Commits
- Network (16)
- Issues (20)
- Downloads (50)
- Wiki (1)
- Graphs
-
Branch:
master
-
gitextensions does not use current directory when launched from the command line
1 comment Created 3 months ago by netcsrLines 55 and 56 in Program.cs should exist outside of the if (args.Length == 3) check like so:
if (args.Length == 3) { if (Directory.Exists(args[2])) GitCommands.Settings.WorkingDir = args[2]; if (string.IsNullOrEmpty(GitCommands.Settings.WorkingDir)) GitCommands.Settings.WorkingDir = args[2].Substring(0, args[2].LastIndexOf('\\')); } if (string.IsNullOrEmpty(GitCommands.Settings.WorkingDir)) GitCommands.Settings.WorkingDir = Directory.GetCurrentDirectory();Comments
-
the submenu width on File->Recent Repositories is truncated to be unusable
Comments
-
windows and dialogs are not dismissable with Escape key
1 comment Created 3 months ago by netcsrAlmost all windows and dialogs can not be closed with the escape key.
About
Commandline usage
Open Repository dialog
many many more.Also, many dialogs have maximize button or are resizeable but have no need to be and are ugly because of it.
Comments
-
If the GitExtensions install folder is not part of the PATH then gitex.cmd is not useful. If gitex.cmd is executed from a working directory other than the gitex folder, then it can not execute GitExtensions.exe
To fix replace its contents with:
@setlocal @for /F "delims=" %%I in ("%~dp0") do @set gitex_folder=%%~fI @set PATH=%gitex_folder%;%PATH% @start /B GitExtensions.exe %*
Comments
-
gitextension v1.72
execute:
GitExtensions.exe browse asdfAnd it crashes. The crash is from line 52 of Program.cs
GitCommands.Settings.WorkingDir = args[2].Substring(0, args[2].LastIndexOf('\'));
args[2] does not contain a backslash, therefore LastIndexOf return -1 therefore Substring throws ArgumentOutOfRangeException
Comments
-
File History displays too much of commit message
1 comment Created 3 months ago by snaeweThe 'File History' window (double-click on a file in the 'Diff' tab of a commit) displays the whole commit
message in the 'Name' column (which should be renamed to 'Message', btw.).
It should only display the first line of the commit message (as any other git command does).Comments
-
Hi Henk,
Is it possible to add a feature to save window positions please?
If GitExtensions main browser is opened from the RMB context menu, it is windowed, but from the start menu it opens full screen. Any changes changes made to the size are not remembered for later opening. An autosave of last window size and position would help a great deal on high resolution displays.
If you do not feel window size and position should be added, could the start menu opening be set to windowed which would keep it consistent with the context menu method?
Regards
Squelch
Comments
-
Visual Studio 2005 and 2008, running as Admin on Vista:
See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.NullReferenceException: Object reference not set to an instance of an object. at GitUI.FormSettings.Save() at GitUI.FormSettings.FormSettigns_FormClosing(Object sender, FormClosingEventArgs e) at System.Windows.Forms.Form.OnFormClosing(FormClosingEventArgs e) at System.Windows.Forms.Form.WmClose(Message& m) at System.Windows.Forms.Form.WndProc(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m) at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m) at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam) ************** Loaded Assemblies ************** mscorlib Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll ---------------------------------------- GitExtensions Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/Program%20Files/Henk/GitExtensions/GitExtensions.exe ---------------------------------------- GitUI Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/Program%20Files/Henk/GitExtensions/GitUI.DLL ---------------------------------------- System.Windows.Forms Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll ---------------------------------------- System Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll ---------------------------------------- System.Drawing Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll ---------------------------------------- GitCommands Assembly Version: 1.0.0.0 Win32 Version: 1.0.0.0 CodeBase: file:///C:/Program%20Files/Henk/GitExtensions/GitCommands.DLL ---------------------------------------- System.DirectoryServices Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.DirectoryServices/2.0.0.0__b03f5f7f11d50a3a/System.DirectoryServices.dll ---------------------------------------- Accessibility Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll ---------------------------------------- System.Xml Assembly Version: 2.0.0.0 Win32 Version: 2.0.50727.3053 (netfxsp.050727-3000) CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll ---------------------------------------- ************** JIT Debugging ************** To enable just-in-time (JIT) debugging, the .config file for this application or computer (machine.config) must have the jitDebugging value set in the system.windows.forms section. The application must also be compiled with debugging enabled. For example: When JIT debugging is enabled, any unhandled exception will be sent to the JIT debugger registered on the computer rather than be handled by this dialog box.Comments
13xforever
Sun Jun 14 01:02:55 -0700 2009
| link
It appeared in 1.66 release
13xforever
Fri Jul 03 01:06:15 -0700 2009
| link
It's working for me again in 1.67
-
Typo in Create Branch dialog: Chechout should be Checkout
2 comments Created 8 months ago by SimonAlfieLable for check box should be "Checkout", not "Chechout".
Comments
-
Default .gitignore excludes bebug directories instead of debug directories
1 comment Created 8 months ago by SimonAlfie





Fixed