트러블슈팅
-
문제 상황Organization의 repository에 git push를 시도하였는데 아래와 같은 오류가 발생remote: Permission to GreedyPeople/GreedyPeople.git denied to sihyun615. unable to access 'https://github.com/GreedyPeople/GreedyPeople.git/': The requested URL returned error: 403 해결 방법1. Github에서 personal access token을 생성하는데 이 때 repo를 꼭! 체크하여 생성해야함github page > profile > settings > Developer setting > personal access token > token(c..
[TIL] 230620 <트러블슈팅> remote: Permission to ... denied to 사용자. unable to access '...': The requested URL returned error: 403문제 상황Organization의 repository에 git push를 시도하였는데 아래와 같은 오류가 발생remote: Permission to GreedyPeople/GreedyPeople.git denied to sihyun615. unable to access 'https://github.com/GreedyPeople/GreedyPeople.git/': The requested URL returned error: 403 해결 방법1. Github에서 personal access token을 생성하는데 이 때 repo를 꼭! 체크하여 생성해야함github page > profile > settings > Developer setting > personal access token > token(c..
2024.06.20 -
⚠️ 수강생을 삭제하는 메서드 실행 시 ConcurrentModificationException 발생하였음 // 1-2) 수강생 삭제 (점수까지 삭제) public static void deleteStudent() { Scanner sc = new Scanner(System.in); System.out.print("삭제하고 싶은 수강생의 번호를 입력하세요 : "); int studentId = sc.nextInt(); boolean flag=false; for (Student student : studentList) { if (student.getStudentID() == studentId) { ..
[TIL] 240509 <트러블 슈팅> ConcurrentModificationException⚠️ 수강생을 삭제하는 메서드 실행 시 ConcurrentModificationException 발생하였음 // 1-2) 수강생 삭제 (점수까지 삭제) public static void deleteStudent() { Scanner sc = new Scanner(System.in); System.out.print("삭제하고 싶은 수강생의 번호를 입력하세요 : "); int studentId = sc.nextInt(); boolean flag=false; for (Student student : studentList) { if (student.getStudentID() == studentId) { ..
2024.05.09