Recent Posts

#TIL #xcode #vim 지원 플러그인 xvim

less than 1 minute read

Since Apple decided not to load 3rd party plugins, we have to make change to it. What we have to do overall is to re-codesign Xcode. This allows us to loa...

#TIL #git 이전 commit 쪼개기

less than 1 minute read

Start an interactive rebase with git rebase -i <commit>^, where <commit> is the commit you want to split. In fact, any commit range will ...

#TIL #unix #bash exec builtin command

less than 1 minute read

#!/bin/sh ... export PATH="node_modules/.bin:node_modules/hubot/node_modules/.bin:$PATH" exec node_modules/.bin/hubot --name “hubot" "$@...

#TIL #unix 방금 전 명령 실행하기

less than 1 minute read

$ gem update jemoji Updating installed gems Updating jemoji Fetching: jemoji-0.6.2.gem (100%) ERROR: While executing gem ... (Gem::FilePermissionError) ...

#TIL #docker 컨테이너에 파일 복사

less than 1 minute read

$ docker exec -i gerrit ls /var/gerrit/review_site/plugins delete-project.jar events-log.jar $ docker cp reviewassistant.jar gerrit:/var/gerrit/review_site/...

#TIL #gerrit 플러그인 빌드

less than 1 minute read

$ git clone --recursive https://gerrit.googlesource.com/gerrit $ cd gerrit/plugins $ git clone https://gerrit.googlesource.com/plugins/reviewassistant/ $ cd...