728x90

In this case, Project gradle version would not matched correctly for Java project version.

 

Check Below Process

1.  File - Settings - Build, Execution, Deployment 

Change Build and run using Gradle to intelliJ IDEA

 

But it is not important things that Gradle will change java version correctly for project settings.

 

 

If project used to take in version like 11, change Gradle JVM version to 11.

 

2. File - Project Settings

Change project SDK version correctly for java project. In this case, need to change corretto-19 to 11. 

 

3. Change Active profile 

 

Go Edit  - change active profile what you want to change

'Env Setting' 카테고리의 다른 글

Set Environment Variables Programmatically in Postman  (0) 2024.08.22
Vagrant with VMware  (2) 2024.07.25
728x90

Check current branch

35mwl@remoted MINGW64 ~/OtpServer (master)
$ git branch
* master
# current branch was checked with * mark

 

check out current branch to child branch

$ git checkout "child_branch"

 

After checking out, merge master into child_branch to use IntelliJ or command like "git merge master"

"git merge master" means to merge "master" into "child_branch" or others.

With conflicted between master and child, merge will be failed. In this case, recommend to use IDE tools for Debug

 

Quote

https://heestory217.tistory.com/38

 

Merge branch 'master' into 개별브랜치

마스터 브랜치의 내용을 개별 브랜치로 Merge하는 방법 내 브랜치에 마스터 브랜치 내용을 업데이트 해봅시다 👩‍💻 1. 터미널 열기 .git 폴더가 있는 디렉토리에서 git bash 열기 디렉토리 확인, g

heestory217.tistory.com

 

728x90

Project could request certificate or validation, for Our project need to be protect from unauthroized user. 

So some of case need for SSL verification.

 

Especailly, protected or private project could do definitely.

 

Information Gathering

35mwl@remoted MINGW64 ~
$ git clone https://remoted@.......
Cloning into 'OtpServer'...
fatal: unable to access 'https://....': SSL certificate problem: unable to get local issuer certificate

 

Setting up

$ git config --global http.sslVerify false

 

Do not confuse other options like

$ git config --global http.security false

 

Then, Cloning start

$ git clone ........
\Cloning into 'OtpServer'...
warning: ----------------- SECURITY WARNING ----------------
warning: | TLS certificate verification has been disabled! |
warning: ---------------------------------------------------
warning: HTTPS connections may not be secure. See https://aka.ms/gcm/tlsverify for more information.
remote: Counting objects: 5889, done
remote: Finding sources: 100% (5889/5889)
remote: Getting sizes: 100% (3431/3431)
remote: Compressing objects: 100% (794/794)
remote: Total 5889 (delta 2082), reused 5883 (delta 2079)
Receiving objects: 100% (5889/5889), 243.03 MiB | 6.96 MiB/s, done.
Resolving deltas: 100% (2082/2082), done.
728x90

Yagnesh 한테서 도착한 issue 들을 merge 한 이후에 

KakaoAdapterSDK 에서 exception 이 나는 상황을 발견했다.

 

결과적으로 한 3년 정도 처리된 issue 들이 하나하나 제대로 처리됬나 분석하고 

revert 돌리고 나서 다시 한땀한땀 반영해봤는데 안되는 문제가 발생했고

 

 여기저기 찾아 해매다가 결과적으로 git reset 으로 쇼부를 봣다.

 

 

 

이 화면에서

"Reset Current Branch to Here" 을 잡아서 revision 쪽으로 HEAD를 돌리고 나면 commit 이 눈탱이가 돌아갔다고 

Local의 Repository 상태에 Update 쪽이 뜬다.

 

그렇다고 해서 이 부분을 Update 를 땡겨오라는 것이 아니고

내 경우에는 Remote 에 있는 master 마저 조진 상태였기 때문에 

 

Local 에서 조지고 나서 Android Studio 에서 push 를 해줫는데도 제대로 돌아가지 않았다 ^^

역시 진리의 -f 를 줘서 force 를 갈겨주기로 했다.

 

 

origin 에서 master를 갈기면 당연히 local 의 master 를 갈기는 것이므로

origin/master 를 갈겨줘야 remote 상의 master 가 타겟팅이 된다.

 

그러고 나면 정상적으로 돌아오니까 이제 망할놈의 커밋들을 다시 합쳐보자

+ Recent posts