no image
[Git] 커밋 되돌리기(푸쉬 전 일 때) 한 문장으로 끝남
아래처럼 입력하면 커밋 메세지 수정, 파일 수정도 다 가능!!git reset --soft HEAD^
2023.11.08
no image
[React] onclick setstate is not a function
멍청한 짓 엄청 함.. - button onClick에 setState를 넣어서 값 변경하는데 안바뀜 - setState is not a function 이 계속 뜸 - 잘못된 코드 const {isThemeUpdate, setIsThemeUpdate} = useState(false); - 올바른 코드 const [isThemeUpdate, setIsThemeUpdate] = useState(false);
2023.03.07
no image
[React] style에 if문 조건문 넣기
2023.02.15
no image
[Git] git revert error
1. git revert 하는 법git revert .. 아래와 같은 에러가 떴음On branch master Your branch is behind 'origin/master' by 3 commits, and can be fast-forwarded.   (use "git pull" to update your local branch) Revert currently in progress.   (run "git revert --continue" to continue)   (use "git revert --skip" to skip this patch)   (use "git revert --abort" to cancel the revert operation) Changes not staged for commit..
2022.08.23
no image
[React] ERROR in (./node_modules/css-loader/dist/cjs.js??
React sass 연결 시 오류 고생함 해결방법!! 1. sass 재설치 - 난 안됨 npm uninstall node-sass; npm install node-sass@4.14.1 2. sass 설치..(?) npm add node-sass classnames react-icons classnames 부터는 안해도 될듯.. 조건부 스타일링을 편하게 할 수 있다고 합니다.. yarn 사용하는 분들은 위에 명령어로 npm -> yarn 바꾸면 됨!! 참고 : 리액트를 다루는 기술 - 개정판 (김민준 지음)
2022.08.19
no image
[GitLab] gitlab과 vscode 연동(+clone)
GitLab 처음 사용.. 회사에서 lab 쓴다니 받아들여야지.. 어제 다른거 다 해주셨는데 vscode랑 GitLab 연결에서 막혔음 상사님은 vscode를 안쓰신다고.. 검색해도 안나옴 => Github랑 똑같음! ㅋㅋㅋ 방법 보시죠.. 아주 간단! 나는 vscode에 github연결해서 사용했음.. -> 이라는 전제하에 아래를 따라오시길.. 1. Clone Repository Clone 할 GitLab HTTP 주소 가져오기 여튼 Clone 누르면 SSH, HTTP나옴 난 HTTP로 했음 copy말고 주소를 눌러서 복사함.. copy는 왜인지 안됨 .git으로 끝나는 주소 ing.. 엥..? 끝남.. 놀랍게도.. 사실 나도 30분밖에 안걸림 (gitlab이랑 github랑 방법 다른줄알고..라는 변..
2022.08.11
no image
[Spring] The import org.springframework cannot be resolved
github 리포지토리 엉망진창 돼서 압축파일로 가져와서 내 노트북에 풀었음 근데 오류남.. 하지만 해결방법을 찾음!! 프로젝트 오른쪽클릭 -> Maven -> Update Project... -> OK 파일 하나 해보고 에러 해결되면 select all 해서 모든 파일 update maven project 해주면 됨!!
2022.07.03
no image
ORA-12505 오류 Listener refused the connection with following error
1. cmd 창에 lsnrctl services 입력 2. 아래쪽에 있는 "~XDB"를 보면 XDB앞에 있는 system을 SID에 입력!! => XDB앞에 있는 단어는 다 다른듯.. 아래 글 참고 Oracle〃ORA-12505 오류해결 Listener refused the connection with following error 힘들게 오라클을 설치하고 SQL Developer를 실행 시켰는데 또 골치 아프게 오류가 발생했습니다. 어떤 오류냐면... Listener refused the connection with the following error : ORA-12505, TNS: listener does.. hunit.tistory.com
2022.06.29

아래처럼 입력하면 커밋 메세지 수정, 파일 수정도 다 가능!!

git reset --soft HEAD^

 

멍청한 짓 엄청 함.. 

 

- button onClick에 setState를 넣어서 값 변경하는데 안바뀜

- setState is not a function 이 계속 뜸 

 

 

- 잘못된 코드

const {isThemeUpdate, setIsThemeUpdate} = useState(false);

- 올바른 코드

const [isThemeUpdate, setIsThemeUpdate] = useState(false);

 

 

<div style={isStyle? {width:'20px'}: null} />

<div style={isStyle? {width:'20px'}: {width: '20%'} />

 

[Git] git revert error

냥치기소녀
|2022. 8. 23. 14:09

1. git revert 하는 법

git revert <되돌아 갈 과거 커밋>..<되돌리기 시작할 최근 커밋>

 

아래와 같은 에러가 떴음

On branch master
Your branch is behind 'origin/master' by 3 commits, and can be fast-forwarded.
  (use "git pull" to update your local branch)

Revert currently in progress.
  (run "git revert --continue" to continue)
  (use "git revert --skip" to skip this patch)
  (use "git revert --abort" to cancel the revert operation)

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)

 

 


  revert를 계속할거면 git revert --continue를 하면됨

 

 

2. git push

git push origin master

난 master 브랜치에 할거였기 때문에 master로 했음

 

하지만 위에 처럼 했을 때 에러뜸

 ! [rejected]          master -> master (non-fast-forward)
error: failed to push some refs to

 

강제 푸쉬를 해줬음 (조심해야한다고함)

아래 코드가 강제 푸쉬하는 코드

git push -f origin

 

또 안됐음

 

브랜치 Protected 풀어야한다고함

 

2-1. GitLab repository / 설정 / 저장소 / Protected Branches - expend 클릭 / master branch가 등록되어 있는 데 옆에 Unprotect를 누르기

 

2-2. 강제 푸쉬 다시 하기

 

 

완료!!!

 

React sass 연결 시 오류

고생함

해결방법!!

 

 

1. sass 재설치 - 난 안됨

npm uninstall node-sass;

npm install node-sass@4.14.1

2. sass 설치..(?)

npm add node-sass classnames react-icons

classnames 부터는 안해도 될듯.. 조건부 스타일링을 편하게 할 수 있다고 합니다..

 

yarn 사용하는 분들은 위에 명령어로 npm -> yarn 바꾸면 됨!!

 

 

 

참고 : 리액트를 다루는 기술 - 개정판 (김민준 지음)

GitLab 처음 사용..

회사에서 lab 쓴다니 받아들여야지..

어제 다른거 다 해주셨는데

vscode랑 GitLab 연결에서 막혔음

상사님은 vscode를 안쓰신다고..

 

검색해도 안나옴 => Github랑 똑같음! ㅋㅋㅋ

 

방법 보시죠..

아주 간단!

 

 

나는 vscode에 github연결해서 사용했음.. -> 이라는 전제하에 아래를 따라오시길..

 

1.   Clone Repository 

Clone 할 GitLab HTTP 주소 가져오기

 

보안상... 모자이크 처리

 

여튼 Clone 누르면 SSH, HTTP나옴 난 HTTP로 했음

copy말고 주소를 눌러서 복사함.. copy는 왜인지 안됨

 

.git으로 끝나는 주소

 

 

ing..

 

엥..? 끝남.. 놀랍게도..

 

사실 나도 30분밖에 안걸림

(gitlab이랑 github랑 방법 다른줄알고..라는 변명)

 

제가 보고싶을까봐 글 써봤습니다..

그롬 안뇽~~!!

 

github 리포지토리 엉망진창 돼서 압축파일로 가져와서 내 노트북에 풀었음

근데 오류남.. 

 

하지만 해결방법을 찾음!!

프로젝트 오른쪽클릭 -> Maven -> Update Project... -> OK 

 

 

파일 하나 해보고 에러 해결되면 select all 해서 모든 파일 update maven project 해주면 됨!!

 

에러안뜸

 

1. cmd 창에 lsnrctl services 입력

2. 아래쪽에 있는 "~XDB"를 보면 XDB앞에 있는 system을 SID에 입력!!

=> XDB앞에 있는 단어는 다 다른듯..

성공!!!

 

 

 

 

아래 글 참고

 

Oracle〃ORA-12505 오류해결 Listener refused the connection with following error

힘들게 오라클을 설치하고 SQL Developer를 실행 시켰는데 또 골치 아프게 오류가 발생했습니다. 어떤 오류냐면... Listener refused the connection with the following error : ORA-12505, TNS: listener does..

hunit.tistory.com