blob: 1f2f4fae2ea5da56bfdffcecbbc7986f6bbeb5c8 (
plain) (
blame)
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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Forge Workflows</title>
<link rel="stylesheet" href="/oldstyle.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<meta charset="utf-8" />
</head>
<body>
<h1>Forge Workflows</h1>
<p>I generally use <a href="https://git.runxiyu.org/">my own Git server</a> for my projects. I also use my <a href="https://sr.ht/~runxiyu">sr.ht account</a> for <a href="https://todo.sr.ht/~runxiyu">issue tracking</a> and <a href="https://lists.sr.ht/~runxiyu">mailing lists</a>, and <a href="https://git.sr.ht/~runxiyu">their Git</a> for some projects too.</p>
<p>Regardless of whether I'm using my own infrastructure with plain Cgit and plain mailing lists (except that my mailing list manager is slightly broken for now), or the slightly better-integrated environment sourcehut provides, a contributor who wishes to submit some of their commits may simply do the following with <a href="https://git-send-email.io">git-send-email</a>:</p>
<ol>
<li>Configure git-send-email (only once!)</li>
<li>Clone the repository to a local directory</li>
<li>Make some changes and commit</li>
<li><code>git send-email HEAD^ --to='~runxiyu/public-inbox@lists.sr.ht'</code> or something similar</li>
</ol>
<p>This is much easier, imo, than the pull-request workflow popularized by GitHub (which is proprietary by the way) and similar forges:</p>
<ol>
<li>Register an account on the forge (once per forge)</li>
<li>Click “fork” on the repo's Web interface</li>
<li>Clone the fork to a local directory</li>
<li>Make some changes and commit</li>
<li>Push</li>
<li>Go back to the Web interface to create a PR (which often involves clicking at least three buttons)</li>
<li>Delete your redundent fork once the PR is merged and your repo is not really useful anymore</li>
</ol>
<p>Why do certain people hate on sourcehut? Really convenient workflow IMO.</p>
<div id="footer">
<hr />
<p><a href="/">Runxi Yu's Website</a></p>
</div>
</body>
</html>
|