GIT

· GIT
Git Bash Here 이용 커밋 초기설정 git config --global user.name "유저이름" git config --global user.email "유저 이메일" 파일 준비 git init #.git 파일 생성 git add . #선택한 프로젝트 폴더 내의 모든 파일 관리 -> 특정파일만 하고 싶다면 git add 파일이름.파일형식 ex) git add a.txt git status #상태확인 git commit -m "주석" #커밋 업로드하기 git remote add origin {위 3번에서 저장한 깃허브 저장소 주소} git push -u origin main 아래건 깃랩 프로젝트 생성시, 초기 설정방법 안내 cd existing_repo git remote add origin..
gglee
'GIT' 카테고리의 글 목록