File: index.html

package info (click to toggle)
gcli 2.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,476 kB
  • sloc: ansic: 25,411; sh: 580; makefile: 509; yacc: 261; lex: 59
file content (120 lines) | stat: -rw-r--r-- 3,862 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>

<html>
	<head>
		<title>GCLI - A Git Forge CLI</title>
		<style>
			body {
				margin:5% auto;
				background: #f2f2f2;
				color: #444444;
				font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
				font-size: 16px;
				line-height: 1.8;
				text-shadow: 0 1px 0 #ffffff;
				max-width: 73%;
			}

			pre {
				line-height: 1.0;
			}

			a {
				border-bottom: 1px solid #444444;
				color: #444444;
				text-decoration: none;
			}

			a:hover {
				border-bottom: 0;
			}

			img#screenshot {
				margin: 50px 0px;
				width: 60%;
				max-width: 800px;
			}

			@media only screen and (max-width: 1024px) {
				img#screenshot {
					width: 100%;
				}
			}
		</style>
	</head>

	<body>
		<h1>GCLI - A Git Forge CLI</h1>
		<p>
			GCLI is a tool that lets you interact with Git forges such as GitLab, Gitea and
			GitHub with a consistent command line interface.
			<br/>
			It allows you to create, inspect and interact with issues, pull- and merge requests,
			inspect CI and pipelines and much more.
			<br/>
			<img src="./assets/screenshot.png"
			     alt="Screenshot of gcli"
			     id="screenshot"/>
		</p>
		<p>
			<h3>General</h3>
			There is not much so far on this page.
			However, you can go look at
			<ul>
				<li><a href="./releases">Releases</a></li>
				<li><a href="./tutorial">Tutorial</a></li>
				<li><a href="https://sr.ht/~herrhotzenplotz/gcli">Sourcehut</a>,
				    <a href="https://gitlab.com/herrhotzenplotz/gcli">GitLab</a>
				    and
				    <a href="https://github.com/herrhotzenplotz/gcli">GitHub</a>
				</li>
				<li><a href="./testing">Test tarballs</a></li>
			</ul>
		</p>
		<p>
			<h3>GCLI is available in various distributions</h3>

			<span style="display: inline-block;">
				<a href="https://repology.org/project/gcli/versions">
					<img src="https://repology.org/badge/vertical-allrepos/gcli.svg"
					     alt="Packaging status"
					     align="right">
				</a>
			</span>

			<br/>

			If you want gcli to be available in your favourite operating system please submit
			them to the respective packaging tree.<br/>
			Please also tell me such that I can link to them here.<br/>
		</p>
		<p>
			<h3>Bug Reports and Development</h3>
			Report bugs by sending an E-Mail to <a href="mailto:~herrhotzenplotz/gcli-discuss@lists.sr.ht">the mailing list</a>.
			You can view the archives on the web on <a href="https://lists.sr.ht/~herrhotzenplotz/gcli-discuss">Sourcehut</a>.
			We also accept bugs reported via our mirrors on
			<a href="https://gitlab.com/herrhotzenplotz/gcli/-/issues">GitLab</a> and
			<a href="https://github.com/herrhotzenplotz/gcli/issues">GitHub</a>,
			however the mailing list is the preferred method.
			<br />
			I also happily accept patches and encourage sending to our <a href="mailto:~herrhotzenplotz/gcli-devel@lists.sr.ht">development mailing list</a>.
			Its archives can also be viewed on the web on <a href="https://lists.sr.ht/~herrhotzenplotz/gcli-devel">Sourcehut</a>.
			Alternatively you can send patches to our mirrors on GitLab and GitHub too, however the mailing list is the preferred method.
			<br />
			For sending patches via E-Mail please refer to git-send-email.
			If you have never done that, I can recommend <a href="https://git-send-email.io/">git-send-email.io</a>
			<br />
			If you are using Mercurial, you can refer to
			<a href="https://man.sr.ht/hg.sr.ht/email.md">Sourcehut's documentation for patchbomb</a>.
			<br />
			For questions or general discussions about patches and bugs you can join the IRC channel
			<a href="https://web.libera.chat/#gcli">#gcli on Libera.Chat</a>.
		</p>
		<p>
			The CSS on this page is stolen and edited from
			<a href="https://github.com/setetres/evenbettermotherfuckingwebsite">
				the even better motherfucking website
			</a>.
		</p>
	</body>
</html>