-
-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
e1f4968
commit f294121
Showing
2 changed files
with
44 additions
and
1 deletion.
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,33 @@ | ||
"""Commits.""" | ||
|
||
# 1. Опишите своими словами назначение каждого из этих типов коммитов: | ||
# feat, fix, docs, style, refactor, test, build, ci, perf, chore. | ||
# | ||
# feat - добавление какой-либо важной функции в код | ||
# | ||
# fix - исправление багов, недочетов в коде. | ||
# | ||
# docs - дополнение документации. | ||
# | ||
# style - изменения в стиле кода, без изменения его структуры. | ||
# | ||
# refractor - изменения структуры кода. | ||
# | ||
# test - коммит, проводящийся в целях проверить работоспособность того или иного парта проекта | ||
# | ||
# build - изменения в сборке (setup) - добавление библиотек, линтеров и тд. | ||
# | ||
# ci - касаются конфигурации инструментов CI | ||
# | ||
# perf - оптимизация, улучшение производительности | ||
# | ||
# chore - выполнение мелкой задачи. | ||
|
||
# 2. Представьте, что вы исправили баг в функции, которая некорректно округляет числа. Сделайте фиктивный коммит и напишите для него сообщение в соответствии с Conventional Commits (используя тип fix). | ||
# | ||
# - done: https://github.com/SENATOROVAI/Data-Science-For-Beginners-from-scratch-SENATOROV/commit/e1f49686642a33cb319dd2b2260a08638edf6313 | ||
# | ||
# 3. Добавление новой функциональности: | ||
# Допустим, вы реализовали новую функцию generateReport в проекте. Сделайте фиктивный коммит с типом feat, отражающий добавление этой функциональности | ||
|
||
# |