GIT
-
[GIT] - 브랜치Linux/development tool 2023. 8. 3. 02:20
글의 참고 - https://backlog.com/git-tutorial/kr/stepup/stepup1_5.html - https://www.gitkraken.com/learn/git/best-practices/git-branch-strategy#github-flow-branch-strategy - http://scottchacon.com/2011/08/31/github-flow.html - https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow - https://nvie.com/posts/a-successful-git-branching-model/ 글의 전제 - 밑줄로 작성된 글은 강조 표시를 의미한다. - 그림 출처는..
-
[LINUX][GIT] - .gitignore 쉽게 만들기Linux/development tool 2023. 8. 3. 02:20
Github Repository를 만들 때 .gitignore를 만들 수 있지만, 실무에서 vendor사에서 제공하는 소스를 받아보면 .gitignore가 없는 경우가 있다. git status를 치는 순간 *.o *.log 등 엄청난 양의 파일들로 렉이 걸릴 정도로 실무 프로젝트는 파일 양이 방대하다 ㅠㅠ.. 그래서 .gitignore를 적용해야 겠다고 생각했다. 그런데 .gitignore에 어떤 내용들을 적용해야 할 지 막막할 때 참고하면 좋은 사이트가 있다. https://www.toptal.com/developers/gitignore gitignore.io Create useful .gitignore files for your project www.toptal.com 위의 사이트에 접속해서 적당한..
-
[GIT] - git diff를 통한 patch 파일 생성 및 적용Linux/development tool 2023. 8. 3. 02:13
글의 참고- https://git-scm.com/book/ko/v2/%EB%B6%84%EC%82%B0-%ED%99%98%EA%B2%BD%EC%97%90%EC%84%9C%EC%9D%98-Git-%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8-%EA%B4%80%EB%A6%AC%ED%95%98%EA%B8%B0- https://stackoverflow.com/questions/45584131/how-patching-works-in-yocto글의 전제- 밑줄로 작성된 글은 강조 표시를 의미한다.- 그림 출처는 항시 그림 아래에 표시했다.글의 내용- 왜 패치 파일을 사용할까 ?" 왜 패치 파일을 별도로 사용할까? 그냥 소스 코드를 직접 수정하면 안되나? 내가 개인적으로 중요하다고 생각되는 패치 파..