부트 스트랩 - 필요한 디자인 가져와서 사용
Font Awesome - 아이콘 사용
ui deisign
daisyui: https://daisyui.com/theme-generator/
tailwindcss: https://tailwindcss.com/docs/installation
Font
Notion 관리 참고
용어
repository: 저장소
commit: repository에 저장
push: 업로드(로컬 저장소의 commit를 업로드)
pull: 다운로드(원격 저장소의 commit를 다운로드)
merge: 코드 병합
pull request: 병합 요청
branch: 갈래
origin: 원격 저장소
HEAD: 작업중인 branch
명령어
add
git add {File Name}
commit
git commit -m {message}"
checkout
git checkout {commit CheckSum or branch Name}
git checkout - => 최신 커밋으로 돌아가기
clone
git clone https://github.com/sb3827/TourInfoServiceClient.git .
.은 현재 위치이므로 원하는 주소로 변경
push
git push {repository} {branch}
pull
git pull
branch
git branch {branch Name}