목록전체 글 (435)
보라코딩

kakaoLogin 폴더 내 kakaoLogin.html 카카오 로그인하기 KakaoLoginController package com.tastemate.controller; import com.tastemate.service.KakaoService; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.*; @Controller @RequestMapp..

알아서 잘 딱 깔끔하고 센스있게 정리하는 GitHub 핵심 개념들어가며paullabworkspace.notion.site git bash복사: ctrl + insert 붙여넣기: shift + insert 현재 git repository 확인하기git remote -v 리파지토리 변경$ git remote set-url origin 주소쓰기 안된다면 git remote add origin 주소쓰기 #현재 디렉토리에 깃 생성git init git clone$ git clone 주소 코드받기$ git pull 브랜치 만들기$ git branch 이름 브랜치이동$ git checkout 이름 다 올리기$ git add . 커밋하기$ git commit -m "기능 내용 쓰" 푸쉬하기git push --set-..