가장 쉬운 GIT강좌 참고
나는 window를 쓰므로.. 터미널 대신 명령프롬프트를 쓴다.(실제론 Git Bash 를 썼다.)
tip : Git Bash에 wecode 폴더를 드래그했더니 손쉽게 넣어졌다 !
wecode
폴더로 이동cd Desktop/wecode
git_practice
폴더 생성mkdir git_practice
git init
git_practice
폴더 진입 후 (cd git_practice
).git
폴더 확인 (ls -al
)본인영문이름.md
파일 생성touch seunghyunson.md
vi seunghyunson.md
git status
git add .
git status
git commit -m "메세지"
git status
git log
git_practice
폴더와 github repository 연동 : `git remote add origin repository주소`
내 깃허브 주소로가서 새 레퍼지토리를 만든 뒤
노란줄부터 따라한다.
마지막줄 git push -u origin master-branch 는 쓰지말고 12번으로 넘어간다.
git push origin main
이후에
https://github.com/wecode-bootcamp-korea/westagram-frontend.git
넣는다.
프론트다운받은뒤
git branch feature/chaebinhan
git checkout feature/chaebinhan
마스터에서 작업하면 안됨. 신성한 곳.
새 브랜치 파서 작업해야함.
폴더만들어아햠.
students 안에 내 기수 들어가서 내이름으로 된 폴더 만들기
기존에 작업했던 폴더들 넣기
커밋남기기는
git tatus
git add.
git status
작업물넣은거 본다
git commit -m "Add: 초기세팅완료.로그인페이지구현 예정 <-이렇게
git status ->나띵투웅앵git
git push origin feature/chaebinhan
로컬에있던게 리모트 된 것.
pr 내용까지 적어주기.
라벨 꼭!리뷰요청
create pull request 클릭
ㅇ
--- 11/27
git checkout feature/chaebinhan <-내 브런치로 이동