Pull Request 절차1. Fork2. clone, remote 로컬에 clonegit clone https://github.com/humback915/Design.git 원격 저장소에 추가git remote add 원격 저장소 현황git remote -v 3. branch 생성로컬에서 작업할 branch 생성 및 이동git switch -c sub 4. add, commit, pushgit 수정 파일 추가git add . git commit 메세지 추가git commit -m git 원격 저장소에 push 하여 로컬 개발 브랜치가 원격 저장소에 생성git push 5. Pull Request 생성 6. Merge 7. branch 삭제 및 동기화원격 저장소와 로컬 동기화git pull ..
GIT
Git & Github 명령어1. git config 확인git config —list2. git config 설정git config —global user.nameuser.name 확인하는 명령어입니다.git config —global user.name “name”user.name을 지정하는 명령어입니다.git coonfig —global user.emailuser.email을 확인하는 명령어입니다.git coonfig —global user.email “email”user.email을 지정하는 명령어입니다.3. git config 삭제git conifg —unset —global user.namegit conifg —unset —global user.email4. git init 초기화디렉토리를 gi..