<주번호>.<부번호>.<패치번호>[-<상태코드><수정카운트>]
- 주 번호
- Major 업데이트
- 이하 버전 초기화 (
e.g. v1.3.5 -> v2.0.0)
- 부 번호
- Minor 업데이트
- 호환되는 신규 기능 추가 등
- 이하 버전 초기화 (
e.g. v1.3.5 -> v1.4.0)
| [user] | |
| name = Foundy | |
| email = foundy@foundy.dev | |
| [alias] | |
| lg = log --decorate --graph --pretty=format:'%C(bold blue)%h%C(reset) (%C(bold cyan)%ai%C(reset)%C(bold green) %ar %Cred%an%Creset)%C(reset)%C(bold yellow)%d%C(reset), %C(white)%s%C(reset) %C(dim white)' | |
| cleanup = "!git branch --merged | grep -v '\\*\\|master\\|develop' | xargs -n 1 git branch -d" |
These rules are adopted from the AngularJS commit conventions.
Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist.
Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).