GitHub 사용법 (How to use GitHub)
·
GitHub
처음 시작할 때 초기 설정 (Initial setup at first start) 1. GitHub에 저장소 만들기 (Create Repository on GitHub)GitHub 사이트에서 'New repository' 클릭 (Click 'New repository' on the GitHub site)저장소 이름 입력 후 생성 (Create after entering a repository name) 2. 로컬에서 Git 초기화 및 연결 (Initialize and connect to Git locally)bashgit initgit remote add origin https://github.com/아이디(id)/저장소이름(repository).gitgit branch -M main 📤 파일 업로드하..