See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
| #!/usr/bin/env bash | |
| ## version: 05/2020 - Debian | |
| # Se não entender algum commando ou | |
| # quiser saber mais verifique-o em https://explainshell.com/ | |
| # É uma ferramenta maravilhosa, infelizmente apenas em ingles, | |
| # mas nada que o google tradutor não resolva. | |
| # sugestão: use o chrome que já tem tradução incorporada. |
| package br.com.simpledev.struts2.action; | |
| import java.util.List; | |
| import org.apache.struts2.convention.annotation.Action; | |
| import org.apache.struts2.convention.annotation.Namespace; | |
| import org.apache.struts2.convention.annotation.Result; | |
| import br.com.simpledev.struts2.dao.CarroDao; | |
| import br.com.simpledev.struts2.dao.jdbc.JdbcCarroDao; |