일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- maVen
- Windows 10
- find
- Windows
- lsof
- profile
- 네트워크
- grep
- web.xml
- plugin
- bash
- GIT
- Eclipse
- xargs
- context
- 단축키
- vscode
- JavaScript
- ssh
- tomcat
- IntelliJ
- Source
- port
- Mac
- import
- resource
- VirtualBox
- netsh
- 줄바꿈 문자
- Quartz
- Today
- Total
목록2024/05 (14)
develog
자주 쓰는 명령어help Display this help textlls [ls-options [path]] Display local directory listingls [-1afhlnrSt] [path] Display remote directory listinglcd path Change local directory to 'path'cd path Change remote directory to 'path'lmkdir path Create local directorymkdir p..
## users wp_insert_user() wp_update_user() wp_delete_user() get_user_by() wp_get_current_user() ## usermeta add_user_meta() update_user_meta() delete_user_meta() get_user_meta() ## posts wp_insert_post() wp_update_post() wp_delete_post() get_post() ## postmeta add_post_meta() update_post_meta() delete_post_meta() get_post_meta() https://developer.wordpress.org/reference/functions/ WordPress Deve..
PublishViewable by everyone. (publish)FutureScheduled to be published in a future date. (future)DraftIncomplete post viewable by anyone with proper user role. (draft)PendingAwaiting a user with the publish_posts capability (typically a user assigned the Editor role) to publish. (pending)PrivateViewable only to WordPress users at Administrator level. (private)TrashPosts in the Trash are assigned ..
- shell script 나 shell 을 통해 입력한 명령을- shell (bash) 이 명령어를 해석해서 kernel 에 전달하고- kernel 은 해당 명령을 실행한다 shell script- 명령 줄에서 실행되는 명령어와 제어 구조를 사용하여 작성된 스크립트 bash- 'Bourne Again SHell' 의 약어- shell 의 한 종류- UNIX 및 UNIX 계열 운영 체제에서 사용되는 명령 줄 인터프리터- shell script를 실행하기 위한 여러 shell 중 하나의 shell shell- 사용자와 OS 간의 인터페이스 역할- shell 종류 * /bin/sh * /bin/bash * /bin/zsh kernel- 커널은 운영 체제의 핵심 부분- 하드웨어와 소프트웨어 간..
declare -A map=([source]='git@github.com:userA/repo10' [target]='git@github.com:userB/repo20')echo $mapecho ${map[source]}echo ${map[target]}

복제할 리포지토리를 mirror clone 한다## --mirror 대신에 --bare 를 사용한다$ git clone --mirror git@github.com:userA/mirror-source-proj$ git clone --bare git@github.com:userA/mirror-source-proj 복제한 리포지토리를 신규 리포지토리로 mirror push 한다- push 하기 전에 신규 리포지토리를 먼저 생성한다$ cd mirror-source-proj$ git fetch$ git push --mirror git@github.com:userB/mirror-target-proj `git clone --mirror` 를 사용할 경우 아래 오류가 발생할 수 있음 ! [remote rejected..