Skip to content

Commit

Permalink
Extracted manuals to separate files
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill Saksin committed Sep 20, 2019
1 parent 32ec92d commit 8c06874
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 25 deletions.
5 changes: 2 additions & 3 deletions README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,9 @@ We encourage our colleagues not to stand aside and to support this letter.

# How to sign

You can sign this letter by creating a file with a random name (an easy way to create a unique filename is to use *[GUID generator](https://www.guidgenerator.com/online-guid-generator.aspx)*) in the `signed` folder. Put the following lines in the file (each line represents a single person):

You can do this by creating a file with a random name (preferably complex) in the `signed` folder. Put the following lines in the file (each line is a separate person):
```
Name Surname | Position, company
Last Name First Name | Position, company
```

## Linux / MacOS / Cygwin (git bash)
Expand Down
24 changes: 24 additions & 0 deletions manual.en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# How to sign

You can do this by creating a file with a random name (preferably complex) in the `signed` folder. Put the following lines in the file (each line is a separate person):
```
Last Name First Name | Position, company
```

## Linux / MacOS / Cygwin (git bash)

```bash
# Here YOUR_FORK - your fork of this repository
git clone ${YOUR_FORK}
cd case-212
# YOUR_GITHUB_USERNAME - username on github, such naming of branch is optional,
# you can name your branch however you want, but don't forget to change git push command as well!
git checkout -b signature/${YOUR_GITHUB_USERNAME}
cd signed
# YOUR_SURNAME - surname, YOUR_NAME - first name, POSITION - position at your company, COMPANY - your company
echo "${YOUR_SURNAME} ${YOUR_NAME} | ${POSITION}, ${COMPANY}" > $(uuidgen)
git commit -a -m 'Signature from ${YOUR_GITGUB_USERNAME}'
git push origin signature/${YOUR_GITHUB_USERNAME}
# time to create pull-request!
```

25 changes: 25 additions & 0 deletions manual.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Как подписаться

Вы можете это сделать, создав [в репозитории](https://github.com/developers-against-repressions/case-212) файл со случайным именем (простой способ создать уникальное имя файла — использовать *[генератор GUID](https://www.guidgenerator.com/online-guid-generator.aspx)*) в папку `signed`. В этом файле напишите строки
следующего формата (каждая строка — отдельный человек):
```
Фамилия Имя | Должность, компания
```

## Linux / MacOS / Cygwin (git bash)

```bash
# Здесь YOUR_FORK - ваш форк этого репозитория
git clone ${YOUR_FORK}
cd case-212
# YOUR_GITHUB_USERNAME - ваше имя пользователя в github, такое именование ветки опционально,
# вы можете выбрать удобный вам способ именования, но не забудьте поменять имя и на git push!
git checkout -b signature/${YOUR_GITHUB_USERNAME}
cd signed
# YOUR_SURNAME - фамилия, YOUR_NAME - имя, POSITION - должность, COMPANY - компания
echo "${YOUR_SURNAME} ${YOUR_NAME} | ${POSITION}, ${COMPANY}" > $(uuidgen)
git commit -a -m 'Signature from ${YOUR_GITGUB_USERNAME}'
git push origin signature/${YOUR_GITHUB_USERNAME}
# идём создавать pull-request
```

23 changes: 1 addition & 22 deletions pre-readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,28 +32,7 @@

# Как подписаться

Вы можете это сделать, создав [в репозитории](https://github.com/developers-against-repressions/case-212) файл со случайным именем (простой способ создать уникальное имя файла — использовать *[генератор GUID](https://www.guidgenerator.com/online-guid-generator.aspx)*) в папку `signed`. В этом файле напишите строки
следующего формата (каждая строка — отдельный человек):
```
Фамилия Имя | Должность, компания
```

## Linux / MacOS / Cygwin (git bash)

```bash
# Здесь YOUR_FORK - ваш форк этого репозитория
git clone ${YOUR_FORK}
cd case-212
# YOUR_GITHUB_USERNAME - ваше имя пользователя в github, такое именование ветки опционально,
# вы можете выбрать удобный вам способ именования, но не забудьте поменять имя и на git push!
git checkout -b signature/${YOUR_GITHUB_USERNAME}
cd signed
# YOUR_SURNAME - фамилия, YOUR_NAME - имя, POSITION - должность, COMPANY - компания
echo "${YOUR_SURNAME} ${YOUR_NAME} | ${POSITION}, ${COMPANY}" > $(uuidgen)
git commit -a -m 'Signature from ${YOUR_GITGUB_USERNAME}'
git push origin signature/${YOUR_GITHUB_USERNAME}
# идём создавать pull-request
```
Смотрите [инструкцию](./manual.md)

***

Expand Down

0 comments on commit 8c06874

Please sign in to comment.