Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +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 sign this letter by creating file with random name in `signed` directory.
Put the following lines in the file (each line represents a single person):
```
Name Surname | Position, company
```
More verbose manual is available [here](./manual.en.md)
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 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):
```
Name Surname | Position, company
```

## Linux / MacOS / Cygwin / WSL (Windows Subsystem for Linux)

Comment thread
saksmt marked this conversation as resolved.
```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_NAME} ${YOUR_SURNAME} | ${POSITION}, ${COMPANY}" > $(uuidgen)
git commit -a -m 'Signature from ${YOUR_GITHUB_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`. В этом файле напишите строки
следующего формата (каждая строка — отдельный человек):
```
Фамилия Имя | Должность, компания
```

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Убрать всё до этой строки (см. https://github.com/developers-against-repressions/case-212/pull/1965/files#r326648269)

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Не убрал, оставил чуть более подробную версию того же текста (ссылки, пояснения по юидам, вот это вот всё)

## Linux / MacOS / Cygwin / WSL (Windows Subsystem for Linux)

```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_GITHUB_USERNAME}'
git push origin signature/${YOUR_GITHUB_USERNAME}
# идём создавать pull-request
```

5 changes: 3 additions & 2 deletions pre-readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@

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

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

***

Expand Down