Replies: 1 comment 1 reply
-
It is here: https://github.com/git-for-windows/git/blob/HEAD/git-gui/git-gui.sh But that is not all there is to it, it comes with a library of Tcl files at https://github.com/git-for-windows/git/tree/HEAD/git-gui/lib and with a Windows-specific wrapper: https://github.com/git-for-windows/git/blob/HEAD/git-gui/windows/git-gui.sh
Indeed, this is another wrapper that is copied to
Right, and the idea was to replicate the same functionality in the CMake configuration, but that has not happened yet: git/contrib/buildsystems/CMakeLists.txt Line 127 in f46b4dc
The easiest way is to use a PortableGit and edit Once you implemented a new feature or a bug fix that way, copy the edited files over the source files and commit. (You may want to stage in a more fine-grained manner, e.g. using Git GUI itself, seeing as there are some placeholders that are interpolated during a |
Beta Was this translation helpful? Give feedback.
-
Setup
defaults?
to the issue you're seeing?
I build using Visual Studio and git-for-windows opened as a folder (As mentioned in the Readme).
Confugration and Build succeeds - git.exe starts.
Details
I don't really know. I use the Visual Studio Debugger/Launcher - maybe it is just
cmd
.Minimal, Complete, and Verifiable example
this will help us understand the issue.
Not applicable - I have a question about building.
What actually happened instead?
If the problem was occurring with a specific repository, can you provide the
URL to that repository to help us with testing?
My question
I would like to contribute to git-gui and therefore want to build it. It doesn't necessarily needs to be build since it is tcl script based, but I cannot find a tcl script for git gui - like for gitk.
I also saw that the git installation insalled by using the installer of git-for-windows comes with a
git-gui.exe
(not tcl-only) and the readme in the git-gui folder mentions a "build" usingmake
. This seems to be not really needed, but can be done.Since gitk works without build (
tcl
) I wonder howgit-gui
is build here. I found no specific instructions forgit-gui
and I don't really know how to usemake
for git-for-windows.I can build git (
git.exe
) and run gitk (tclsh.exe .\\gitk-git\\gitk
)Can someone help me start debugging of git-gui?
Beta Was this translation helpful? Give feedback.
All reactions