-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kirill Saksin
committed
Sep 20, 2019
1 parent
32ec92d
commit 8c06874
Showing
4 changed files
with
52 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters