GitHub
-
문제 상황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 -
[13. 모던자바 (람다, 스트림, Optional)] Java 8에서 새롭게 추가된 개념1. 함수형 프로그래밍의 기능들 (1) 함수를 일급 값으로! (메서드 참조 기능의 도입) >> 값으로 전달할 함수 생성// Car 클래스 내부에 두 메서드 구현public static boolean hasTicket(Car car) { return car.hasParkingTicket;}public static boolean noTicketButMoney(Car car) { return !car.hasParkingTicket && car.getParkingMoney() > 1000;} >> 함수형 인터페이스interface Predicate { boolean test..
[TIL] 240502 <자바> 람다,스트림,Optional + Git 심화 특강(2)[13. 모던자바 (람다, 스트림, Optional)] Java 8에서 새롭게 추가된 개념1. 함수형 프로그래밍의 기능들 (1) 함수를 일급 값으로! (메서드 참조 기능의 도입) >> 값으로 전달할 함수 생성// Car 클래스 내부에 두 메서드 구현public static boolean hasTicket(Car car) { return car.hasParkingTicket;}public static boolean noTicketButMoney(Car car) { return !car.hasParkingTicket && car.getParkingMoney() > 1000;} >> 함수형 인터페이스interface Predicate { boolean test..
2024.05.02 -
[IntelliJ] IntelliJ 프로젝트 GitHub 연동하기IntelliJ IDEA에서 작업 중인 프로젝트를 GitHub에 연동하는 방법을 알아봅시다.먼저 GitHub에서 연동할 repository를 생성합니다.이제 IntelliJ로 넘어와서 연동을 진행합니다.IntelliJ File → Settings → GitHub Gvelog.io 1. Github에 repository를 생성2. 인텔리제이에서 Github 로그인VCS - Get from Version Control - Github - Log in via GitHub 3. Github의 리모트 repository와 연동을 위한 로컬 프로젝트의 디렉토리를 Git Repository로 만들기 VCS - Create Git Repository -..
인텔리제이 프로젝트 깃허브 연동[IntelliJ] IntelliJ 프로젝트 GitHub 연동하기IntelliJ IDEA에서 작업 중인 프로젝트를 GitHub에 연동하는 방법을 알아봅시다.먼저 GitHub에서 연동할 repository를 생성합니다.이제 IntelliJ로 넘어와서 연동을 진행합니다.IntelliJ File → Settings → GitHub Gvelog.io 1. Github에 repository를 생성2. 인텔리제이에서 Github 로그인VCS - Get from Version Control - Github - Log in via GitHub 3. Github의 리모트 repository와 연동을 위한 로컬 프로젝트의 디렉토리를 Git Repository로 만들기 VCS - Create Git Repository -..
2024.04.26 -
1. 필수 리눅스 명령어 (git 명령어 아님)pwd (print working directory) : 현재 내가 작업하는 폴더를 보여줌ls (list) : 내 폴더 안에 있는 폴더&파일 내역 보여줌ls -a (list all) : 숨겨진 파일(보통 .으로 시작함)도 모두 볼 수 있음cd 폴더명 (change directory) : ls 명령어에서 확인된 폴더로 이동 가능- cd .. : 상위폴더로 이동(한단계 위)- cd 폴더명/폴더명 : 한번에 더깊이mkdir 폴더명 (make directory) : 현재 경로에서 폴더를 생성touch 파일명 : 현재 폴더에서 파일을 생성하는 명령어- 해당 이름을 가진 파일이 없으면 생성 / 있으면 파일의 날짜, 시간 변경 2. Git &..
[TIL] 240415 Git & Github 사용(1)1. 필수 리눅스 명령어 (git 명령어 아님)pwd (print working directory) : 현재 내가 작업하는 폴더를 보여줌ls (list) : 내 폴더 안에 있는 폴더&파일 내역 보여줌ls -a (list all) : 숨겨진 파일(보통 .으로 시작함)도 모두 볼 수 있음cd 폴더명 (change directory) : ls 명령어에서 확인된 폴더로 이동 가능- cd .. : 상위폴더로 이동(한단계 위)- cd 폴더명/폴더명 : 한번에 더깊이mkdir 폴더명 (make directory) : 현재 경로에서 폴더를 생성touch 파일명 : 현재 폴더에서 파일을 생성하는 명령어- 해당 이름을 가진 파일이 없으면 생성 / 있으면 파일의 날짜, 시간 변경 2. Git &..
2024.04.16