Git

· Git
https://github.com/codecrafters-io/build-your-own-x GitHub - codecrafters-io/build-your-own-x: Master programming by recreating your favorite technologies from scratch.Master programming by recreating your favorite technologies from scratch. - codecrafters-io/build-your-own-xgithub.com https://www.youtube.com/shorts/LfosPTS3J5Y
· Git
맨 위의 commit으로 patch 만들기git format-patch -n HEAD^ 다른 곳으로 이동해서 기존 방식으로 patchpatch -p1
· Git
git log --grep 키워드
· Git
참고자료https://velog.io/@minrami1115/PRPull-Request%EB%9E%80 배울 수 있는 것git을 fork해서 가져옴branch를 만듬commit을 만들기원래의 git저장소에 pull request를 하기
· Git
목적이미 제출한 pull request를 수정하기방법# 코드 수정git commit --amend git push -f origin 브랜치이름참고자료https://almond0115.tistory.com/entry/GIT-이미-올린-Pull-request-수정하는-법
· Git
git pull request하기local에서 만든 commit을 remote repo에 적용하기 위한 리뷰 절차git checkout -b local_test # pull 요청전에 branch만들기# ... 작업git push origin local_test # origin에 push이후에 리뷰 절차 진행함참고자료https://wayhome25.github.io/git/2017/07/08/git-first-pull-request-story/
orbhanis
'Git' 카테고리의 글 목록