Co-authored-by: tieshagr <tieshagr@student.21> Co-authored-by: oct <m0odyplus@yandex.ru> Reviewed-on: https://gitea.serafimdev.com/serafim/dos/pulls/5 Reviewed-by: dr-wh0 <79003667309@yandex.ru> Co-authored-by: serafim <simasuh@gmail.com> Co-committed-by: serafim <simasuh@gmail.com>
14 lines
833 B
Markdown
14 lines
833 B
Markdown
# Как жить?
|
|
|
|
```
|
|
git clone https://gitea.serafimdev.com/serafim/dos # Клонируем репозиторий
|
|
git checkout -b my_dns # Создаём ветку для реализации модуля my_dns
|
|
git add * # Добавляем написанный код в комит
|
|
git commit -m 'Написал код' # Комитим в локальную ветку
|
|
git push origin my_dns # Пушим свою ветку в репозиторий
|
|
# Теперь в интерфейсе https://gitea.serafimdev.com/serafim/dos создаём пул реквест и пишем мне в тг
|
|
```
|
|
|
|
Для компиляции:
|
|
g++ DosAtk.cpp -lcurl
|
|
Если ошибка отсутствия заголовочного файла "curl.h", то нужно установить: sudo apt-get install libcurl4-openssl-dev |