[Github] Repository 비공개로 전환 1. Repository로 들어가서 Settings 클릭 2. Settings 들어가서 첫 화면 맨밑의 Danger Zone에서 'Change visibility' 클릭 3. 'Change to private' 클릭 → 'I want to make this repository private' 클릭 → 'Make this repository private' 클릭 4. private 됐는지 확인(자물쇠) Repository/Github 2023.07.23
[Github] Git 버전 확인 및 사용자 등록, 확인(Window 10) Git 버전 확인 Git Bash 실행 후 다음 명령어 입력 $ git --version Git 사용자 등록 $ git config --global user.name "유저명" $ git config --global user.email "유저 이메일주소" Git 사용자 확인 $ git config --list Repository/Github 2023.05.01