• S sverchok
  • Информация о проекте
    • Информация о проекте
    • Активность
    • Метки
    • Участники
  • Репозиторий
    • Репозиторий
    • Файлы
    • Коммиты
    • Ветки
    • Теги
    • Участники
    • Диаграмма
    • Сравнение
  • Задачи 148
    • Задачи 148
    • Список
    • Доски
    • Спринты
  • Запросы на слияние 21
    • Запросы на слияние 21
  • CI/CD
    • CI/CD
    • Конвейеры
    • Задания
    • Расписания
  • Развертывания
    • Развертывания
    • Окружения
    • Релизы
  • Пакеты и реестры
    • Пакеты и реестры
    • Реестр пакетов
    • Реестр контейнеров
  • Мониторинг
    • Мониторинг
    • Инциденты
  • Аналитика
    • Аналитика
    • Поток ценности
    • CI/CD
    • Репозиторий
  • Wiki
    • Wiki
  • Сниппеты
    • Сниппеты
  • Активность
  • Диаграмма
  • Создать новую задачу
  • Задания
  • Коммиты
  • Доски с задачами
Свернуть панель
  • nikitronn
  • sverchok
  • Wiki
  • Git Practices

Git Practices · Изменения

История страницы
Updated Git Practices (markdown) создал Мар 08, 2021 по автору nikitron's avatar nikitron
Показать
Построчно Рядом
Git-Practices.md
Просмотреть страницу @9ddc8475
...@@ -17,6 +17,7 @@ The proper procedure to editing code for the first time is: ...@@ -17,6 +17,7 @@ The proper procedure to editing code for the first time is:
4. `git push --set-upstream origin some_new_branch_name` (... just do it. Also: _google it_) 4. `git push --set-upstream origin some_new_branch_name` (... just do it. Also: _google it_)
5. edit the code. 5. edit the code.
6. periodically (every cohesive change), save your progress by: 6. periodically (every cohesive change), save your progress by:
`git add -A`
`git commit -am "commit message"`. `git commit -am "commit message"`.
<sub>- keep the part between double quotes _descriptive and short_, use [this convention](https://github.com/joelparkerhenderson/git_commit_message) and you'll thank yourself later in life.</sub> <sub>- keep the part between double quotes _descriptive and short_, use [this convention](https://github.com/joelparkerhenderson/git_commit_message) and you'll thank yourself later in life.</sub>
...@@ -31,6 +32,7 @@ One you have edited code in a previous session, and want to continue editing mak ...@@ -31,6 +32,7 @@ One you have edited code in a previous session, and want to continue editing mak
if you have uncommitted code, then you have several options but let's stick to just committing and pushing. if you have uncommitted code, then you have several options but let's stick to just committing and pushing.
- `git add -A`
- `git commit -am "post code commit"` - `git commit -am "post code commit"`
- `git push` - `git push`
......
Клонировать репозиторий
  • For Users:
    • Web resources about Sverchok
    • Dependencies and their installation
    • Sverchok for Blender 2.8x Release Notes
    • Profile Node Examples
    • Set up GitHub account for exporting node trees from Sverchok
    • Custom Defaults
    • Installation on Gentoo-based systems
    • Non-standard Python modules installation
    • Sverchok for Blender 2.79 Installation
    • Sverchok Extensions
    • FAQ
  • For Developers:
    • Install Development version
    • Contributing
      • Git practices
    • Building documentation tarball
    • Macros
    • Sverchok Node Tutorial
      • High-level node howto
      • Details