See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| package middlewares | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "net/http" | |
| ) | |
| func Recovery(next http.Handler) http.Handler { | |
| return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { |
| Script comunas, regiones, provincias Junio 2022 | |
| DROP TABLE IF EXISTS `comunas`; | |
| CREATE TABLE `comunas` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `comuna` varchar(64) NOT NULL, | |
| `provincia_id` int(11) NOT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM AUTO_INCREMENT=346 DEFAULT CHARSET=utf8; |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"