* [PATCH v2] gitk: add README with usage, build, and contributing details
@ 2025-08-21 22:25 Michael Rappazzo
2025-08-22 18:27 ` Johannes Sixt
0 siblings, 1 reply; 4+ messages in thread
From: Michael Rappazzo @ 2025-08-21 22:25 UTC (permalink / raw)
To: git; +Cc: j6t, Michael Rappazzo
Signed-off-by: Michael Rappazzo <rappazzo@gmail.com>
---
Changes from v1:
- Added Usage section with basic gitk command examples
- Simplified Contributing section by removing detailed patch workflow instructions
- Removed repository status and integration details
README.md | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
create mode 100644 README.md
diff --git a/README.md b/README.md
new file mode 100644
index 0000000000..fd249bc24d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,61 @@
+# gitk - The Git Repository Browser
+
+gitk is a graphical Git repository browser. It displays the commit history of a Git repository as a graph, showing the relationships between commits, branches, and tags.
+
+## Usage
+
+To view the history of the current repository:
+```bash
+gitk
+```
+
+To view the history of specific files or directories:
+```bash
+gitk path/to/file
+gitk path/to/directory
+```
+
+To view a specific branch or range of commits:
+```bash
+gitk branch-name
+gitk v1.0..v2.0
+```
+
+For more usage examples and options, see the [gitk manual](https://git-scm.com/docs/gitk).
+
+## Building
+
+gitk is a Tcl/Tk application. It requires Tcl/Tk to be installed on your system.
+
+### Running directly
+```bash
+./gitk
+```
+
+### Installation
+To install system-wide, you can use either `make` or `meson`:
+
+```bash
+# Using Make
+make install
+
+# Using Meson
+meson setup builddir
+meson compile -C builddir
+meson install -C builddir
+```
+
+Both build systems will handle setting the correct Tcl/Tk interpreter path and installing translation files.
+
+## Contributing
+
+Contributions are welcome! The preferred method for submitting patches is via email to the Git mailing list, as this allows for more thorough review and broader community feedback. However, GitHub pull requests are also accepted.
+
+All commits must be signed off (use `git commit --signoff`) and should have commit messages prefixed with `gitk:`.
+
+#### Email Patches
+Send patches to git@vger.kernel.org and CC j6t@kdbg.org. See the Git project's [patch submission guidelines](https://git-scm.com/docs/SubmittingPatches) for detailed instructions on creating and sending patches.
+
+## License
+
+gitk is distributed under the GNU General Public License, either version 2, or (at your option) any later version.
--
2.51.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2] gitk: add README with usage, build, and contributing details
2025-08-21 22:25 [PATCH v2] gitk: add README with usage, build, and contributing details Michael Rappazzo
@ 2025-08-22 18:27 ` Johannes Sixt
2025-08-22 19:55 ` Mike Rappazzo
2025-08-22 20:28 ` Junio C Hamano
0 siblings, 2 replies; 4+ messages in thread
From: Johannes Sixt @ 2025-08-22 18:27 UTC (permalink / raw)
To: Michael Rappazzo; +Cc: git
Am 22.08.25 um 00:25 schrieb Michael Rappazzo:
> Signed-off-by: Michael Rappazzo <rappazzo@gmail.com>
> ---
> Changes from v1:
> - Added Usage section with basic gitk command examples
> - Simplified Contributing section by removing detailed patch workflow instructions
> - Removed repository status and integration details
Thank you very much, this looks a lot better!
>
> README.md | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 61 insertions(+)
> create mode 100644 README.md
>
> diff --git a/README.md b/README.md
> new file mode 100644
> index 0000000000..fd249bc24d
> --- /dev/null
> +++ b/README.md
> @@ -0,0 +1,61 @@
> +# gitk - The Git Repository Browser
Can we please write "Gitk" (uppercase "G") when we talk about the
software, not the command?
I would prefer an easy to read text file. Can we have underlined headers
where possible:
Gitk - The Git Repository Browser
=================================
Analogously for the subordinate headers below.
> +
> +gitk is a graphical Git repository browser. It displays the commit history of a Git repository as a graph, showing the relationships between commits, branches, and tags.
Please wrap the lines so that they don't exceed, say, 70 positions.
> +
> +## Usage
> +
> +To view the history of the current repository:
> +```bash
> +gitk
> +```
> +
> +To view the history of specific files or directories:
> +```bash
> +gitk path/to/file
> +gitk path/to/directory
> +```
> +
> +To view a specific branch or range of commits:
> +```bash
> +gitk branch-name
> +gitk v1.0..v2.0
> +```
> +
> +For more usage examples and options, see the [gitk manual](https://git-scm.com/docs/gitk).
> +
> +## Building
> +
> +gitk is a Tcl/Tk application. It requires Tcl/Tk to be installed on your system.
> +
> +### Running directly
At this point we should insert:
Gitk can be run from the source directory without installation:
> +```bash
> +./gitk
> +```
This is very convenient during development.
> +
> +### Installation
> +To install system-wide, you can use either `make` or `meson`:
> +
> +```bash
> +# Using Make
> +make install
This doesn't install system-wide, but in $HOME/bin. I am unsure whether
we should encourage this. AFAIC, I would be upset if this works without
sudo *and* clutters my $HOME. (I pull Gitk into the Git repository,
which I have patched to install in /usr/local.)
How do Gitk contributors handle `make install`?
> +
> +# Using Meson
> +meson setup builddir
> +meson compile -C builddir
> +meson install -C builddir
> +```
I haven't used the Meson infrastructure ever. I trust this procedure works.
> +
> +Both build systems will handle setting the correct Tcl/Tk interpreter path and installing translation files.
> +
> +## Contributing
> +
> +Contributions are welcome! The preferred method for submitting patches is via email to the Git mailing list, as this allows for more thorough review and broader community feedback. However, GitHub pull requests are also accepted.
> +
> +All commits must be signed off (use `git commit --signoff`) and should have commit messages prefixed with `gitk:`.
> +
> +#### Email Patches
> +Send patches to git@vger.kernel.org and CC j6t@kdbg.org. See the Git project's [patch submission guidelines](https://git-scm.com/docs/SubmittingPatches) for detailed instructions on creating and sending patches.
> +
> +## License
> +
> +gitk is distributed under the GNU General Public License, either version 2, or (at your option) any later version.
Very good!
-- Hannes
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] gitk: add README with usage, build, and contributing details
2025-08-22 18:27 ` Johannes Sixt
@ 2025-08-22 19:55 ` Mike Rappazzo
2025-08-22 20:28 ` Junio C Hamano
1 sibling, 0 replies; 4+ messages in thread
From: Mike Rappazzo @ 2025-08-22 19:55 UTC (permalink / raw)
To: Johannes Sixt; +Cc: git
On Fri, Aug 22, 2025 at 2:27 PM Johannes Sixt <j6t@kdbg.org> wrote:
> > +
> > +### Installation
> > +To install system-wide, you can use either `make` or `meson`:
> > +
> > +```bash
> > +# Using Make
> > +make install
>
> This doesn't install system-wide, but in $HOME/bin. I am unsure whether
> we should encourage this. AFAIC, I would be upset if this works without
> sudo *and* clutters my $HOME. (I pull Gitk into the Git repository,
> which I have patched to install in /usr/local.)
>
> How do Gitk contributors handle `make install`?
Maybe I should expand on this section and add details:
```
# Install to default location ($HOME/bin)
make install
# Install to system-wide location
sudo make install prefix=/usr/local
# Install to custom location
make install prefix=/opt/gitk
```
>
> > +
> > +# Using Meson
> > +meson setup builddir
> > +meson compile -C builddir
> > +meson install -C builddir
> > +```
>
> I haven't used the Meson infrastructure ever. I trust this procedure works.
>
Yes, I installed `meson` and ran these steps. It replaced my
previously installed version
I'll send a new revision in a day or two.
Thanks for the look,
_Mike
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] gitk: add README with usage, build, and contributing details
2025-08-22 18:27 ` Johannes Sixt
2025-08-22 19:55 ` Mike Rappazzo
@ 2025-08-22 20:28 ` Junio C Hamano
1 sibling, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2025-08-22 20:28 UTC (permalink / raw)
To: Johannes Sixt; +Cc: Michael Rappazzo, git
Johannes Sixt <j6t@kdbg.org> writes:
> I would prefer an easy to read text file. Can we have underlined headers
> where possible:
>
> Gitk - The Git Repository Browser
> =================================
Oooh. Thanks for being brave to say what I couldn't, due to fear of
being in the minority with unpopular preference ;-)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-08-22 20:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-21 22:25 [PATCH v2] gitk: add README with usage, build, and contributing details Michael Rappazzo
2025-08-22 18:27 ` Johannes Sixt
2025-08-22 19:55 ` Mike Rappazzo
2025-08-22 20:28 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).