• 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) создал Мар 21, 2021 по автору nikitron's avatar nikitron
Показать
Построчно Рядом
Git-Practices.md
Просмотреть страницу @97034314
### Git instructions ## Git instructions
This page is primarily aimed at Git novices. If that's you, keep reading. Else feel free to correct the info. This page is primarily aimed at Git novices. If that's you, keep reading. Else feel free to correct the info.
...@@ -38,11 +38,16 @@ if you have uncommitted code, then you have several options but let's stick to j ...@@ -38,11 +38,16 @@ if you have uncommitted code, then you have several options but let's stick to j
Now you are free to change branch to master (and pull) or to keep editing code. Now you are free to change branch to master (and pull) or to keep editing code.
### Tips ## Tips
Howto install blender addons from github with one command. Usage `LNaddon git@github.com:nortikin/sverchok.git`
### Howto install blender addons from github with one command, use alias (~/.bashrc file)
for ~/src directory blender 2.9: for ~/src directory blender 2.9:
``` ```
alias LNaddon='{ read -r url&&cd ~/src&&git clone $url&&bn=$(basename $url .git)&&cd $bn&&d=$(pwd)&&us=$(users)&&ln -s $d /home/$us/.config/blender/2.93/scripts/addons/&&echo "2.93 linked" ;} <<< ' alias LNaddon='{ read -r url&&cd ~/src&&git clone $url&&bn=$(basename $url .git)&&cd $bn&&d=$(pwd)&&us=$(users)&&ln -s $d /home/$us/.config/blender/2.93/scripts/addons/&&echo "2.93 linked" ;} <<< '
``` ```
Usage `LNaddon git@github.com:nortikin/sverchok.git`
### Howto discard changes
If you do not want to commit changes and not need them, than discard: If you do not want to commit changes and not need them, than discard:
`git checkout -- .` `git checkout -- .`
Клонировать репозиторий
  • For Users:
    • Web resources about Sverchok
    • Dependencies and their installation
      • Simple dependencies
      • PIP
        • Side modules
      • SciPy
      • SciKit image
      • Circlify
      • PyMcubes
      • GeomDL
      • FreeCAD
    • Sverchok for Blender 2.8x Release Notes
    • Sverchok for Blender 2.79 Installation
    • Set up GitHub account for exporting node trees from Sverchok
    • Custom Defaults
    • Sverchok Extensions
    • FAQ
  • Examples:
    • Profile Node Examples
  • For Developers:
    • Install Development version
    • Contributing
      • Git practices
    • Building documentation tarball
    • Macros
    • Sverchok Node Tutorial
      • High-level node howto
      • Details