-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Added manual for linux/macos/cygwin/git-bash #1965
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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) | ||
|
|
||
| ```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! | ||
| ``` | ||
|
|
||
| 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`. В этом файле напишите строки | ||
| следующего формата (каждая строка — отдельный человек): | ||
| ``` | ||
| Фамилия Имя | Должность, компания | ||
| ``` | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Убрать всё до этой строки (см. https://github.com/developers-against-repressions/case-212/pull/1965/files#r326648269)
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
| ``` | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.