울음참고 개발공부
article thumbnail
728x90

 

1. 레파지토리 생성

github 에서 레파지로티 생성

2. 로컬에서 git에 올릴 파일 선택

3. git bash 를 사용한 초기설정 및 파일 업로드

#초기 설정

git config --global user.name "유저이름"

git config --global user.email "유저 이메일"

git init      #.git 파일 생성

git add .     
git status    #상태확인

git commit -m "커밋 메시지"     

# 업로드
git remote add origin 레파지토리 주소

git push -u origin master

 

수정 : git push -u origin master -> git push -u origin main

( 현재 기본 브랜치는 main 이기 때문에 master 브랜치에 올리면 master->main 으로 옮겨주는 작업이 필요하다)

 

 

혹시 master 에 올렸다면 아래 포스트에서 git 으로 다시 올리는 법을 다루고있다. 

 

2023.04.22 - [Git] - Git | 브랜치 변경 master -> main 오류 ! [rejected] main -> main (non-fast-forward)

 

Git | 브랜치 변경 master -> main 오류 ! [rejected] main -> main (non-fast-forward)

main 에 올리고 싶은데 master 브랜치를 생성하여 그곳에 push 를 해버렸다. 첫번째, 수정하려는 파일 선택 후, git bash 로 열기 gitbash 를 이용하여 진행하기 때문에, 변경하고자 하는 프로젝트의 파일

megak.tistory.com

 

git bash 에서의 복붙은 ?

ctrl + c -> ctrl + Ins
ctrl + v -> shift + Ins

 

 

728x90
profile

울음참고 개발공부

@메각이

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!