일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 지하철분실물
- 격파르타 장점
- Wordpress
- SQL개발자
- 고객지원실
- [sqld] 자격증 합격
- 객체지향의사실과오해
- 자바의정석
- java
- AWS
- 항해플러스
- Your session has been terminated
- 항해플러스후기
- AWS시험
- 지하철분실
- readony
- Foundational
- 항해플러스백엔드
- 남궁성
- modern java in action
- 모던 자바 인 액션
- 격파르타 합격후기
- Java의정석
- 항해솔직후기
- 격파르타 후기
- AWS Certified Cloud Practitioner
- 쿠버네티스
- ARIadminer
- 항해99
- saltkey
Archives
- Today
- Total
목록Develop (36)
WorkaHolic
Git Reflog
참조로그 모든 브랜치의 업데이트 이력 확인git refloggit reflog = git reflog show HEAD = git reflog HEAD 특정 브랜치의 업데이트 이력 확인git reflog [show] 브랜치이름e.g. git reflog show deve.g. git reflog dev
Develop/Git
2024. 9. 24. 15:45
플러그인 ARI Adminer 오류 - Your session has been terminated.
Your session has been terminated. Run the application again from WordPress. - 세션 권한 문제 chown -R nginx:nginx /var/lib/php/session
Develop/WordPress
2022. 11. 29. 11:43
Git Rm
Remove files from the working tree and from the index 작업 트리 및 색인에서 파일 제거 * 로컬 및 원격저장소 파일 삭제 git rm filename e.g. git rm index.html * 원격저장소만 파일 삭제 git rm --cached filename e.g. git rm --cached index.html - 옵션 -r : 내부값까지 삭제 (css, img, js는 디렉토리) e.g. git rm -r --cached css img js index.html - 삭제 이후, commit과 push까지 해야 github가 변경됨 e.g. git commit -m "file delete" e.g. git push origin main
Develop/Git
2022. 3. 1. 02:42