Skip to content

Instantly share code, notes, and snippets.

View foundy's full-sized avatar
🤔
Worrying

Foundy foundy

🤔
Worrying
  • Korea, Republic of
View GitHub Profile
@foundy
foundy / gh-pages-deploy.md
Created November 30, 2017 08:56 — forked from cobyism/gh-pages-deploy.md
Deploy to `gh-pages` from a `dist` folder on the master branch. Useful for use with [yeoman](http://yeoman.io).

Deploying a subfolder to GitHub Pages

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.

Step 1

Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).

@foundy
foundy / .gitconfig
Last active February 28, 2024 02:12
.gitconfig
[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"
@foundy
foundy / versioning.md
Last active July 16, 2026 09:01
버전 체계 정리

버전 포맷 (SemVer 2.0.0 기준)

<주번호>.<부번호>.<패치번호>[-<사전 릴리스>][+<빌드 메타데이터>]

일반 버전

  • 주 번호 (MAJOR)
  • 하위 호환되지 않는 변경(breaking change)