공부/Git
git 초기설정 및 연결하기
작은소행성
2021. 3. 29. 15:39
git 초기 설정으로 깃에 올리는 이름과 이메일을 설정해주어야한다.
global명령어를 사용하지않으면 깃 push할때마다 이름과 이메일을 설정해주어야 한다.
// git commit에 사용될 username
git config --global user.name "your_name"
// git commit에 사용될 email
git config --global user.email "your_email@example.com"
// 설정한 내용을 확인할 수 있다.
git config --list
git init 으로 깃과 연결해준다
git init
git remote add origin 깃주소
// git push --set git push --set-upstream origin master
git pull origin master
git add .
git commit -m ""
git push --set-upstream origin master
반응형