-
코딩알려주는 누나-깃, 깃허브 한번에 이해시켜드리고 포트폴리오 올리는 법까지 알려드림.카테고리 없음 2022. 4. 9. 10:35
github sign in-new-repository생성
git설치 - git bash 실행 - git config --global user.name "lilly02v"
git config --global user.email "lilly02v@naver.com" (깃허브 가입시 쓴 이메일)
gut config --list로 설정이 잘 되었나 확인
vscode에서 올릴 파일 폴더 열기
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/lillly02v/first-somi-project.git
git remote -v로 확인
git push -u origin master(main)
파일 수정후
git add .
git commit -m "second commit"
git push -u origin master(main)