Cmd
등록 :
git config --global user.name ""
git config --global user.email ""
확인 :
git config user.name
git config user.email
Git 프로그램 설치
Github 로그인 => git 사용 이름,git 사용 이메일 정보 겟 =>토큰 제작(패스워드) - admin:ssh_signing_key 빼고 체크
=> Git repository( ? 자료를 공유할 수 있는 공간)에 참여,혹은 만들기
=> 아이디,패스워드 등록 => repository 생성
STS
show view
create new local .. - 경로(src)
remotes 우클릭 - create remote - uri , 비밀번호 등록 -> save and push
echo "# java-basic" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/seeungirl/java-basic.git
git push -u origin main
remote : 업로드,수정,삭제,다운로드 (사용자 이름)
branch : 권한 (기본 : main), 추가 가능
🚫 Git : 동기화가 되어있어 로컬에서도 삭제 후 잘못 push할 시에 같이 삭제되므로 큰일난다
내가 해보니
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/seeungirl/java-basic.git
git push -u origin main
=> 이거 순서대로 하면댐
'CLASS > Git' 카테고리의 다른 글
#1-1 / Git Bash 명령어 , GitHub 연동 (0) | 2024.07.25 |
---|