git switch fe/develop

git pull

git switch <브랜치> (fe/feature/feat78-notification)

git rebase fe/develop

git pull

git push

Swal.fire({
  title: "Are you sure?",
  icon: "warning",
  showCancelButton: true,
  confirmButtonColor: "#3085d6",
  cancelButtonColor: "#d33",
  confirmButtonText: "마치시겠습니까?",
  customClass: {
    container: 'my-swal-container', // 컨테이너 클래스
    popup: 'my-swal-popup', // 팝업 클래스
    header: 'my-swal-header', // 헤더 클래스
    title: 'my-swal-title', // 타이틀 클래스
    closeButton: 'my-swal-close-button', // 닫기 버튼 클래스
    icon: 'my-swal-icon', // 아이콘 클래스
    image: 'my-swal-image', // 이미지 클래스
    content: 'my-swal-content', // 컨텐츠 클래스
    input: 'my-swal-input', // 인풋 클래스
    actions: 'my-swal-actions', // 액션 클래스
    confirmButton: 'my-swal-confirm-button', // 확인 버튼 클래스
    cancelButton: 'my-swal-cancel-button', // 취소 버튼 클래스
    footer: 'my-swal-footer' // 푸터 클래스
  }
});