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
| import axios, { AxiosRequestConfig } from 'axios'; | |
| import { store } from 'index'; | |
| // actions | |
| import { setLoading } from 'redux/actions'; | |
| type IConfig = AxiosRequestConfig & { | |
| showSpinner?: boolean; | |
| }; |
| package main | |
| import ( | |
| "fmt" | |
| "image" | |
| "os" | |
| _ "image/jpeg" | |
| _ "image/png" | |
| ) |
| #! /bin/bash | |
| for n in {1..100}; do | |
| dd if=/dev/urandom of=file$( printf %d "$n" ).bin bs=1 count=$(( RANDOM + 1024 )) | |
| done |
| // for multiple requests | |
| let isRefreshing = false; | |
| let failedQueue = []; | |
| const processQueue = (error, token = null) => { | |
| failedQueue.forEach(prom => { | |
| if (error) { | |
| prom.reject(error); | |
| } else { | |
| prom.resolve(token); |
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
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"