전체 글(277)
-
4. 이클립스 프로젝트 > GitHub 올리기
1. Team > Share Project 2. "Use or create..." 클릭 > Create Repository > 3번 체크박스 클릭 3. 아래 처럼 나오면 성공 4. Remotes > Create Remote 선택 5. Create 6. Change 7. GitHub 에서 Code HTTPS 복사 8. 복사한 github 주소와 github ID, PW(Token PW) 입력 9. Save 선택 Save and Push 하면 안됨(로컬저장소에 Commit 하지 않았으므로...) 에러 : Source ref refs/heads/master doesn't resolve to any object. 10. Commit And Push 11. ++ 버튼 선택하여 아래로 내리기. 12. Commit ..
2022.07.06 -
3. Sourcetree 설정 및 계정 설정
1. 소스트리 다운로드 https://sourcetreeapp.com/ Sourcetree | Free Git GUI for Mac and Windows A Git GUI that offers a visual representation of your repositories. Sourcetree is a free Git client for Windows and Mac. www.sourcetreeapp.com 1) Download free 선택 2) 건너뛰기 3) Merurial 해제 4) 입력 후 다음(중요하지 X) 5) SSH 아니오 6) Clone 7) 저장소 입력 후 클론(다른 이름으로 저장해봄) 8) 인증 확인 가능 인증 방법 1 - OAuth 1) 추가 2) 호스팅 서비스 : GitHub 입력 3..
2022.07.06 -
2. VS Code, GitHub 저장소 생성
1. VS Code 설치 https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com 1)VSCodeUserSetup.exe 실행 후 다운로드 2. git 설치 1) https://git-scm.com/ 접속..
2022.07.06 -
1. GitHub 가입, Token 생성
1. https://github.com/ 접속 GitHub: Where the world builds software GitHub is where over 83 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat... github.com 2. 회원가입 1) Sign Up 2) email, pw, name 입력 후 회원가입 3. Public profile 입력 1) Name 입력 2) Public email 입력 - email settings 에서 "..
2022.07.06 -
한글 유니코드 변환기
https://raisonde.tistory.com/entry/%ED%95%9C%EA%B8%80-%E2%86%94-%EC%9C%A0%EB%8B%88%EC%BD%94%EB%93%9C-%EA%B0%84%ED%8E%B8-%EB%B3%80%ED%99%98%EA%B8%B0 한글 ↔ 유니코드 간편 변환기 웹상에서 간단한 변환기는 많이 돌아다니는데 옵션은 많고 칸은 좁고 불편하게 돼 있어서 다시 편하게 만들어 보았습니다. 유니코드나 한글을 입력 하시면 자동으로 상호 변환됩니다. 유니코 raisonde.tistory.com
2022.07.04 -
Swagger note
Swagger note @PutMapping @ApiOperation(value = "등록/수정처리", notes = "신규 게시물 저장 및 기존게시물 업데이트가 가능합니다.") @ApiImplicitParams({ @ApiImplicitParam(name = "boardSeq", value = "게시물 번호", example = "1"), @ApiImplicitParam(name = "title", value = "제목", example = "spring"), @ApiImplicitParam(name = "contents", value = "내용", example = "spring 강좌"), }) public int save(Board parameter) { boardService.save(parame..
2022.06.30