summaryrefslogtreecommitdiffstats
path: root/instructions_git.md
diff options
context:
space:
mode:
authorcharacters <characters@noreply.codeberg.org>2019-08-29 11:32:44 +0200
committercharacters <characters@noreply.codeberg.org>2019-08-29 11:32:44 +0200
commitb8b75aa379f4e8466a5ebe669650ad49bd8c4b7f (patch)
tree75601d1d6775b9ea54a73997b700e6dabd596a34 /instructions_git.md
parentd53c760d511f93268735f725dc4937e0bb98ac4d (diff)
downloadcloudflare-tor-b8b75aa379f4e8466a5ebe669650ad49bd8c4b7f.tar
cloudflare-tor-b8b75aa379f4e8466a5ebe669650ad49bd8c4b7f.tar.gz
cloudflare-tor-b8b75aa379f4e8466a5ebe669650ad49bd8c4b7f.tar.lz
cloudflare-tor-b8b75aa379f4e8466a5ebe669650ad49bd8c4b7f.tar.xz
cloudflare-tor-b8b75aa379f4e8466a5ebe669650ad49bd8c4b7f.zip
Delete 'instructions_git.md'
Diffstat (limited to 'instructions_git.md')
-rw-r--r--instructions_git.md62
1 files changed, 0 insertions, 62 deletions
diff --git a/instructions_git.md b/instructions_git.md
deleted file mode 100644
index 4f4defd8..00000000
--- a/instructions_git.md
+++ /dev/null
@@ -1,62 +0,0 @@
-# How to setup git
-
-This procedure will give you a cloudflare-tor fork with a
-privacy-respecting configuration to do pushes with SSH over Tor using
-codeberg.org ("CDB"). This procedure is designed for ***linux***.
-The first step covers Windows too, but these instructions probably
-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. 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
- ForwardX11 no
- ProxyCommand connect -4 -S 127.0.0.1:9050 $(tor-resolve %h 127.0.0.1:9050) %p
- host codeberg-snowden
- IdentityFile /home/user/.ssh/id_rsa_codeberg-snowden
-```
-
-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: $ `git clone git@codeberg-snowden:crimeflare/cloudflare-tor.git`
-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
- name = snowden
-[remote "origin"]
- url = git@codeberg-snowden:snowden/cloudflare-tor.git
- fetch = +refs/heads/*:refs/remotes/origin/*
-[remote "upstream"]
- url = git@codeberg-snowden:crimeflare/cloudflare-tor.git
- fetch = +refs/heads/*:refs/remotes/origin/*
-[branch "master"]
- remote = origin
- merge = refs/heads/master
-```
-
-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
-
-&nbsp;
-
-Whenever git operates on the cloudflare-tor project, all connections
-to codeberg are automatically over Tor with this configuration
-(because the `url` in `.git/config` references the virtual host
-`codeberg-snowden` in `~/.ssh/config`).