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
Created March 3, 2017 06:40
버전 체계 정리

버전 포맷

<주번호>.<부번호>.<패치번호>[-<상태코드><수정카운트>]

  • 주 번호
    • Major 업데이트
    • 이하 버전 초기화 (e.g. v1.3.5 -> v2.0.0)
  • 부 번호
    • Minor 업데이트
    • 호환되는 신규 기능 추가 등
  • 이하 버전 초기화 (e.g. v1.3.5 -&gt; v1.4.0)