/
sapertlt
/
deploy_to_production
Обзор
Документация
Войти
/
sapertlt
/
deploy_to_production
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
Makefile
17 строк
358 B
Andrey Nikolaev
chore: update Makefile with git-pull production merge
18 июл 2026, 23:18
18 июл 2026, 23:18
38a399e
Код
Авторство
О чём код?
.PHONY: git-commit git-push git-pull git-commit: git add . @echo "Введите сообщение коммита:" @read message && git commit -m "$$message" git-push: git push origin develop git push origin production git-pull: git pull origin develop git checkout production git merge develop git push origin production git checkout develop