diff --git a/instructions_git.md b/instructions_git.md index 1e8f16b3be..15d8ac3b20 100644 --- a/instructions_git.md +++ b/instructions_git.md @@ -10,8 +10,10 @@ need more adaptations for Windows and other platforms. - Linux: `aptitude install git tor ssh` - Windows: Download `https://github.com/git-for-windows/git/releases/PortableGit-2.21.0-64-bit.7z` & run `git-bash.exe` - -[1] +1. install Git, SSH(Not Windows), and Tor (if you haven't already) +1. create a `codeberg.org` account (username "snowden" will be used for this example) +1. create an SSH key pair `$ ssh-keygen -t rsa -N '' -C 'snowden at codeberg' -f "$HOME"/.ssh/id_rsa_codeberg-snowden` +1. edit `$HOME/.ssh/config`: ``` host codeberg-* hostname codeberg.org @@ -21,7 +23,13 @@ need more adaptations for Windows and other platforms. IdentityFile /home/user/.ssh/id_rsa_codeberg-snowden ``` -[2] +1. copy `"$HOME"/.ssh/id_rsa_codeberg-snowden.pub` to clipboard +1. codeberg.org > settings > SSH/GPG Keys > add key (paste from clipboard) +1. $ `firefox https://codeberg.org/crimeflare/cloudflare-tor` +1. fork it (top right corner) +1. go to the directory you want the project to be rooted in (hereafter we'll call it `$project_root`). +1. anonymously download your fork: $ `torsocks git clone https://codeberg.org/snowden/cloudflare-tor` +1. edit `$project_root/cloudflare-tor/.git/config` to include the account name and email address that will be on every commit, as well as the URL: ``` [user] email = BM-yadayadayada6fgnLfybVnCcWf25AGZcgg@bitmessage.ch @@ -37,29 +45,14 @@ need more adaptations for Windows and other platforms. merge = refs/heads/master ``` -
    -
  1. install Git, SSH(Not Windows), and Tor (if you haven't already) -
  2. create a `codeberg.org` account (username "snowden" will be used for this example) -
  3. create an SSH key pair `$ ssh-keygen -t rsa -N '' -C 'snowden at codeberg' -f "$HOME"/.ssh/id_rsa_codeberg-snowden` -
  4. edit `$HOME/.ssh/config`[1] -
  5. copy `"$HOME"/.ssh/id_rsa_codeberg-snowden.pub` to clipboard -
  6. codeberg.org > settings > SSH/GPG Keys > add key (paste from clipboard) -
  7. $ `firefox https://codeberg.org/crimeflare/cloudflare-tor` -
  8. fork it (top right corner) -
  9. go to the directory you want the project to be rooted in (hereafter we'll call it `$project_root`). -
  10. anonymously download your fork: $ `torsocks git clone https://codeberg.org/snowden/cloudflare-tor` -
  11. edit `$project_root/cloudflare-tor/.git/config` to include the - account name and email address that will be on every commit, as - well as the URL[2] -
  12. make your first change -
  13. (from `$project_root`) $ `git add . -u -n` -
  14. check that the files listed are what you changed and intend to push upstream -
  15. if yes: `$ git add . -u` -
  16. $ `git commit -m 'description of first change'` -
  17. $ `git push origin master` -
  18. $ `firefox https://codeberg.org/crimeflare/cloudflare-tor` -
  19. make a new pull request -
+1. make your first change +1. (from `$project_root`) $ `git add . -u -n` +1. check that the files listed are what you changed and intend to push upstream +1. if yes: `$ git add . -u` +1. $ `git commit -m 'description of first change'` +1. $ `git push origin master` +1. $ `firefox https://codeberg.org/crimeflare/cloudflare-tor` +1. make a new pull request