Skip to content

Instantly share code, notes, and snippets.

View feel5ny's full-sized avatar
🏴‍☠️
Now or Never

Joy Kim (김나영) feel5ny

🏴‍☠️
Now or Never
View GitHub Profile
@feel5ny
feel5ny / gist:0727f34062c1c23b174f5d5772ff3725
Created July 2, 2019 16:54 — forked from mwhitis/gist:a652fdceda2aeb150038b449d4ed1fcf
Rename all tags in git matching a pattern
# Rename all of the old tags in the repo that started with EUSS_Prechat_v* to just the numeric part so that they're sorted correctly
git tag -l | grep EUSS | while read t; do n="${t/EUSS_Prechat_v/}"; git tag $n $t ; git tag -d $t ; git push origin :refs/tags/$t ; done
@feel5ny
feel5ny / README.md
Created February 8, 2019 05:17 — forked from jxson/README.md
README.md template

Synopsis

At the top of the file there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)

Code Example

Show what the library does as concisely as possible, developers should be able to figure out how your project solves their problem by looking at the code example. Make sure the API you are showing off is obvious, and that your code is short and concise.

Motivation

@feel5ny
feel5ny / use-git-and-git-flow.adoc
Created January 24, 2018 03:06 — forked from ihoneymon/use-git-and-git-flow.adoc
git 을 기반으로 git-flow를 사용하여 애플리케이션 배포버전을 관리하자.

GIT을 기반으로 한 프로젝트 개발프로세스

깃을 사용합시다. 깃을 쓰자. 깃을 쓰란 말야!!

  • SVN은 변경이력이 많아질수록 속도가 느리지.

    • 커밋 및 처리속도가 빠르다. 변경이력이 많이 축적되어 있어도 속도저하가 거의 없다.

  • 커밋찍기가 어렵다.