Initial commit
commit
016d3f827c
|
@ -0,0 +1,5 @@
|
||||||
|
${CommitTitle}
|
||||||
|
|
||||||
|
${CommitBody}
|
||||||
|
|
||||||
|
Pull Request: https://git.autourdeminuit.com/${BaseRepoOwnerName}/${BaseRepoName}/pulls/${PullRequestIndex}
|
|
@ -0,0 +1,3 @@
|
||||||
|
${PullRequestTitle}
|
||||||
|
|
||||||
|
Pull Request: https://git.autourdeminuit.com/${BaseRepoOwnerName}/${BaseRepoName}/pulls/${PullRequestIndex}
|
|
@ -0,0 +1,22 @@
|
||||||
|
name: Bug Report
|
||||||
|
about: Use Help > Report a Bug from the top of Blender to automatically fill out part of this form.
|
||||||
|
labels:
|
||||||
|
- "Type/Bug"
|
||||||
|
body:
|
||||||
|
- type: textarea
|
||||||
|
id: body
|
||||||
|
attributes:
|
||||||
|
label: "Description"
|
||||||
|
hide_label: true
|
||||||
|
value: |
|
||||||
|
**System Information**
|
||||||
|
Operating system:
|
||||||
|
Graphics card:
|
||||||
|
|
||||||
|
**Software Version**
|
||||||
|
Broken: (example: 3.0.0, main, `f1cca3055776`, 2020-12-30)
|
||||||
|
Worked: (newest version that worked as expected)
|
||||||
|
|
||||||
|
**Short description of error**
|
||||||
|
|
||||||
|
**Exact steps for others to reproduce the error**
|
|
@ -0,0 +1 @@
|
||||||
|
blank_issues_enabled: false
|
|
@ -0,0 +1,10 @@
|
||||||
|
name: Design
|
||||||
|
about: Create a design task (for developers only)
|
||||||
|
labels:
|
||||||
|
- "Type/Design"
|
||||||
|
body:
|
||||||
|
- type: textarea
|
||||||
|
id: body
|
||||||
|
attributes:
|
||||||
|
label: "Description"
|
||||||
|
hide_label: true
|
|
@ -0,0 +1,10 @@
|
||||||
|
name: To Do
|
||||||
|
about: Create a to do task (for developers only)
|
||||||
|
labels:
|
||||||
|
- "Type/To Do"
|
||||||
|
body:
|
||||||
|
- type: textarea
|
||||||
|
id: body
|
||||||
|
attributes:
|
||||||
|
label: "Description"
|
||||||
|
hide_label: true
|
|
@ -0,0 +1,8 @@
|
||||||
|
name: Pull Request
|
||||||
|
about: Code contribution
|
||||||
|
body:
|
||||||
|
- type: textarea
|
||||||
|
id: body
|
||||||
|
attributes:
|
||||||
|
label: "Description"
|
||||||
|
hide_label: true
|
|
@ -0,0 +1,17 @@
|
||||||
|
# Python Artifacts
|
||||||
|
__pycache__
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# Python virtualenvs
|
||||||
|
.venv/
|
||||||
|
.env/
|
||||||
|
|
||||||
|
# Editor config files
|
||||||
|
.idea/
|
||||||
|
*.code-workspace
|
||||||
|
*.vscode
|
||||||
|
|
||||||
|
# Poetry build artifacts
|
||||||
|
dist/
|
|
@ -0,0 +1,23 @@
|
||||||
|
# git_template
|
||||||
|
A Template from which to create new repository from.
|
||||||
|
|
||||||
|
## Development
|
||||||
|
### Cloning
|
||||||
|
1. Create a development directory, such as:
|
||||||
|
```sh
|
||||||
|
/home/<USER>/dev
|
||||||
|
```
|
||||||
|
2. Clone the repository with the following command:
|
||||||
|
```sh
|
||||||
|
git clone ssh://git@git.autourdeminuit.com:222/autour_de_minuit/git_template.git
|
||||||
|
```
|
||||||
|
|
||||||
|
### Branches
|
||||||
|
The main branch is **master**.
|
||||||
|
It is a **protected branch** that only user with the `Owner` role can push to.
|
||||||
|
|
||||||
|
To contribute to this repository, you will have to create you own development branch, and then create a Pull Request. After at least **one validation**, you will be able to merge your changes.
|
||||||
|
|
||||||
|
Branches should be named in `kebab-case`, and can be grouped using `/`.
|
||||||
|
|
||||||
|
Examples: `bug/fix-crash-on-startup`, `bug/fix-font`, `feature/new-colors`, `theme-logic-refactor`, etc...
|
Loading…
Reference in New Issue