일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 항해플러스백엔드
- Java의정석
- 항해솔직후기
- 남궁성
- 자바의정석
- 항해플러스
- readony
- sqld
- AWS Certified Cloud Practitioner
- Foundational
- 항해플러스후기
- AWS
- SSL
- SQL개발자
- java
- Wordpress
- cafe24
- ARI
- 항해99
- 보안인증서
- 변수의타입
- saltkey
- 변수
- Your session has been terminated
- AWS시험
- 형변환
- disabled
- ARIadminer
- Today
- Total
목록Develop (29)
WorkaHolic
reset이나 기타 상황으로 인해, 파일이 삭제되어 deleted: 상태일 때 * 아래와 같이, WorkingDirectory에서 deleted(빨간색)인 경우On branch masterChanges not staged for commit: (use "git add/rm ..." to update what will be committed) (use "git checkout -- ..." to discard changes in working directory) deleted: file.txt no changes added to commit (use "git add" and/or "git commit -a") 1. 해당 파일을 각각 add나 rm해서 StagingArea로 보내기git add f..
참조로그 모든 브랜치의 업데이트 이력 확인git refloggit reflog = git reflog show HEAD = git reflog HEAD 특정 브랜치의 업데이트 이력 확인git reflog [show] 브랜치이름e.g. git reflog show deve.g. git reflog dev
Your session has been terminated. Run the application again from WordPress. - 세션 권한 문제 chown -R nginx:nginx /var/lib/php/session
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