목록Git (2)
공부
로컬저장소로 이용할 폴더에서 git bash 열기 git config (최초 사용시 1번 실행) // git commit에 사용될 username과 email 입력 git config --global user.name "username" git config --global user.email "메일주소" // 설정한 내용 확인 git config --global user.name git config --global user.email 로컬 저장소로 지정 //로컬 저장소로 설정 git init //설정 취소 rm -r .git 로컬저장소의 현재 상태 보기 //로컬저장소의 현재 상태 확인 git status 원격 저장소와 연결 //저장소와 연결 git remote add origin 저장소주소 //저장소와 ..
아래 링크에서 깃허브 가입하고 Git, Visual Studio Code 다운로드 받기 GitHub: Where the world builds software GitHub is where over 50 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and feat... github.com Git git-scm.com Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor ..