일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- new user
- wordpress
- crontab
- front page
- CentOS7
- git pull
- Mac
- Apache
- vscode
- non-www
- Liniux
- child theme
- MariaDB
- Linux
- SSL
- Fail2ban
- DOM Parser
- Xdebug
- php
- home page
- root
- html
- Google Cloud
- launch.json
- https
- mysql
- centos
- 구글 클라우드
- LetsEncrypt
- Certbot
- Today
- Total
목록vscode (3)
between 0 and 1
how to solve "git pull" error in vscode error: There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details git pull If you wish to set tracking information for this branch you can do so with: git branch --set-upstream develop origin/ as descirbed in error message, we need just set an upstream branch ex. git branch --set..
xdebug (version 3.x.x +) install pecl install xdebug xdebug 3+ version will be installed (@2021.01.03) configuration php.ini [xdebug] zend_extension="xdebug.so" xdebug.mode=debug check $> php -i | grep “xdebug” vscode connection run vscode shft+command+x (to bring up the extensions window) find and install “PHP Debug” open debug window (shift + command + D) create launch.json set xdebug port 900..
Visual Studio Code 에서 Python 을 개발하고자 할 때! 실행 혹은 디버깅 시 "Cannot launch program ~~~; setting the 'outFiles' attribute might help" 메세지가 나오며 실행되지 않을 때가 있다. 이건, launch.json 파일에서 인터프리터 (혹은 다른 언어라면 컴파일러) 설정을 해주지 않았기 때문에 발생하는 에러이다. 즉, 실행 방법을 VSCode 가 몰라서 발생하는 에러이다. Python의 경우, 간단히 아래 내용을 launch.json > configurations 에 추가해 주면 된다. { "name": "Python: Current File (integrated)", "type": "python", "request": ..