Skip to content

Commit 3fad88b

Browse files
committed
houdiniproject#1468 - "new commit policies added"
1 parent c8ccaca commit 3fad88b

File tree

2 files changed

+95
-0
lines changed

2 files changed

+95
-0
lines changed

docs/new_commit_policies_en.md

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
## Commit Policies
2+
3+
### First Case
4+
5+
Commits are essential for tracking changes and additions to the project.
6+
7+
The imperative mode (assertive actions and orders) should be used to mention what was done.
8+
9+
If the commit concerns a simple issue, make the commit as follows:
10+
11+
```git
12+
git commit -m "#IdIssue - Message"
13+
```
14+
### A more complex case
15+
16+
Due to its importance, if the commit concerns something more complex, use the following template for standardization, replacing the text of the comments '# will not be read in the commit':
17+
18+
```txt
19+
. #Id-of-Issue - Commit title: start with capital letter, objective
20+
# No more than 50 chars, this line has 50 #
21+
#Skip line
22+
23+
# Body: Explain what and why
24+
# No more than 72 characters (this line has) #
25+
26+
#OPTIONAL: If there is, include this line of co-authors of your commit for each contributor.
27+
#Skip 2 lines
28+
29+
30+
# Co-authored-by: name1 <[email protected]>
31+
# Co-authored-by: name2 <[email protected]>
32+
#Skip line
33+
34+
```
35+
36+
To use the template, add the template file .gitmessage, being in your local repository folder, at the root, as follows:
37+
38+
39+
40+
```git
41+
git config commit.template .gitmessage
42+
```
43+
44+
Or, you can just create a file .gitmessage and add the commit body suggest above. Next time you make the commit, just type "git commit", and a text editor will apears(in my case, VIM). Fill all the commit body with the data you want to describe.
45+
46+
Finally, it is totally possible to change the commit body text

docs/new_commit_policies_pt-br.md

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Políticas de Commits
2+
3+
## Primeiro Caso
4+
5+
Commits são essenciais para acompanhar mudanças e adições ao projeto.
6+
7+
O modo imperativo deve ser usado para mencionar o que foi feito.
8+
9+
Se o commit se refere a um problema simples, faça o commit da seguinte forma:
10+
11+
12+
```git
13+
git commit -m "#IdIssue - Message"
14+
```
15+
16+
### Um caso mais complexo
17+
18+
Devido à sua importância, se o commit se refere a algo mais complexo, use o seguinte modelo para padronização, substituindo o texto dos comentários 'o # não será lido no commit':
19+
20+
21+
```txt
22+
. #Id-of-Issue - Commit title: start with capital letter, objective
23+
# No more than 50 chars, this line has 50 #
24+
#Skip line
25+
26+
# Body: Explain what and why
27+
# No more than 72 characters (this line has) #
28+
29+
#OPTIONAL: If there is, include this line of co-authors of your commit for each contributor.
30+
#Skip 2 lines
31+
32+
33+
# Co-authored-by: name1 <[email protected]>
34+
# Co-authored-by: name2 <[email protected]>
35+
#Skip line
36+
37+
```
38+
39+
Para usar o modelo, adicione o arquivo de modelo .gitmessage, sendo no seu diretório de repositório local, na raiz, da seguinte forma:
40+
41+
42+
43+
```git
44+
git config commit.template .gitmessage
45+
```
46+
47+
Em outro caso, você pode simplesmente criar um arquivo .gitmessage e adicionar o corpo do commit sugerido acima. Na próxima vez que você fizer o commit, basta digitar "git commit", e um editor de texto aparecerá (no meu caso, VIM). Preencha todo o corpo do commit com os dados que você deseja descrever.
48+
49+
Por fim, é totalmente possível mudar o texto do corpo do commit.

0 commit comments

Comments
 (0)