[GitHub] 저장소 repository 옮기기, 이동 (commit 포함)
·
Tools/GitHub
git repository mirroring• git 저장소(repository)를 커밋로그 포함, 그대로 옮기는 방법기존 Repository 복사git clone 명령어에 --mirror 옵션을 추가해서 실행$ git clone --mirror "기존 Repository 주소"명령어를 실행하면 간략한 저장소로 복제한다고 하면서 Repository의 이름으로 .git 디렉터리가 생김 ( "기존 Repository".git ) 해당 디렉터리의 이름을 .git으로 바꾸어 주면 됨$ mv "기존 Repository".git .git새 Repository로 연결git remote의 주소를 새롭게 옮길 Repository 주소로 변경$ git remote set-url origin "새로운 Repository 주..
[SpringBoot] 파일 경로 설명
·
Web & Android/SpringBoot
/src/main/java DTO/VO 구현 @Getter -> 반드시 붙여야 함 @Setter -> 필수는 아님 데이터 교환을 위해 사용할 객체를 만드는 과정 Dto에서 빈칸이거나 Null일 때 @NotBlank(message=”설명”) or @NotNull(message=”설명”)을 사용하여 메시지 보여주기 Controller 구현 @Controller @RequiredArgsConstructor 사용자의 요청에 적절한 서비스를 호출하여 그 결과를 사용자에게 반환하는 코드를 구현 ⇒ 클라이언트 요청을 받고 클라이언트에게 결과를 반환 → 매핑을 통해 view를 리턴 Service 구현 @Service @RequiredArgsConstructo r@Transactional @Slf4j 사용자의 요청에 응..