openssl: bump to 1.1.1j
[librecmc/librecmc.git] / docs / How To Submit A Change To This Wiki.md
1 How To Submit A Change To This Wiki
2 ===================================
3 This wiki is written in Markdown and all wiki documenation is located in /docs.
4
5
6 Clone this repo and:
7 --------------------
8
9     git clone https://gogs.librecmc.org/libreCMC/libreCMC.git
10     
11     
12 Make desired documenation changes in /docs
13
14
15 then
16
17     git push
18
19 or
20
21     git request-pull -p
22
23 ### git push ( In Gogs )
24
25 Clone the upstream repo in Gogs, then clone to your computer:
26
27     git clone https://yourUserName@yourURL
28
29 Add upstream repo to be able to rebase to upstream point commit:
30
31     git remote add upstream https://gogs.librecmc.org/libreCMC/libreCMC.git
32     (git checkout -b optionalBranchName)
33     git push (--all)
34
35 Create Push Request in Gogs:
36
37 * Press the little green PR button in your own repo
38 * Or go to <https://gogs.librecmc.org/libreCMC/libreCMC-wiki/pulls>
39
40 ### git request-pull -p ( Anywhere )
41
42 Clone the upstream repo to your computer.
43
44     git add changedFile.md
45     git commit ( -m Short info what changed )
46     git log ( copy commit id )
47     git request-pull -p (start) URL (end)
48     git request-pull -p (commit in upstream repo) URL master
49
50 Example for piping output to haste:
51
52     git request-pull -p b3b8926484feb37c33e5150facf315ef12b4612e https://gogs.librecmc.org/jonasbits2/libreCMC.git master | haste
53
54 * Send to hastebin.com or any site you like
55 * Paste link in IRC channel
56
57 #### Links
58
59 * <https://www.git-scm.com/docs/git-request-pull>
60 * <https://hastebin.com/about.md>
61