목록Git (2)
블로그 언저리인 무언가
1. VSCode 다운로드하기 Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com 2. 자신의 세팅 불러오기 3. C++ 환경 구축하기 3-1. MingW 다운로드하기 MinGW - Minimalist GNU for Windows Download MinG..
commit을 할때 기록되는 사용자명과 이메일 설정 git config --global user.name "user name" // 유저 설정 git config --global user.email "user@email" // 이메일 설정 git config --list // 유저명, 이메일명 확인 컴퓨터에 로컬 저장소 생성 mkdir [working directory adress] // []경로에 작업폴더생성 로컬 저장소로 이동 cd [working directory adress] // 작업폴더로 이동 원격 저장소 복사 git clone [Github repository adress] [directory name] // 원격저장소를 이름을 정해 복사 로컬 저장소에 변경내용 추가하기 git add [fo..