Error 혹은 Warning

phpunit.xml 이 로컬과 ci 서버 설정이 달라요

phpunit.xmlphpunit.xml.dist의 우선순위는 phpunit.xml이 더 높습니다. 따라서, 로컬에서 사용해야 하는 설정을 phpunit.xml로 하고, 서버에서의 설정을 phpunit.xml로 합니다.

ci 서버의 전처리기에서 phpunit.xml을 삭제하던지 아니면 phpunit.xml.distphpunit.xmlcp 하시면 됩니다.

Git에서 원격에서만 파일을 없애고 싶어요

특정 파일을 제거할 경우,

git rm --cached <파일>

특정 디렉토리를 제거할 경우,

git rm --cached -r <디렉토리>

phpunit에서 IDE의 자동완성기능이 작동하지 않아요

phpunit이 설치가 안되어 있다면:

composer require phpunit/phpunit --dev

phpunit이 설치가 되어 있다면:

composer remove phpunit/phpunit --dev
composer require phpunit/phpunit --dev

iOS 13에서 iPad WKWebview의 유저에이젼트가 Mac으로 표기됩니다

WKWebpagePreferencespreferredContentMode.mobile로 설정.

맥 업데이트 후 "gpg: WARNING: no command supplied"

맥을 업데이트하고 gpg: WARNING: no command supplied 워닝이 나오고 푸쉬가 되지 않을 때에는 이렇게 해 본다.

git config --global gpg.program "/usr/local/bin/gpg"

Last updated