728x90
반응형
create branch
-
[Git Hub 사용법] branch scenarioGit/Github 2022. 7. 22. 16:54
목차 branch scenario Branch 사용법 브랜치를 조작할 떄는 반드시 master 브랜치의 최소 1개의 커밋은 있어야한다. # git 초기화 및 commit 남겨놓기 $ git init $ touch a.txt # a.txt text 1이라는 글을 작성한다. $ git add . $ git commit -m "text 1" [master (root-commit) 76526b0] text 1 1 file changed, 1 insertion(+) create mode 100644 a.txt # 3개의 커밋을 더 남긴다. $ git log --oneline e7e679d (HEAD -> master) text 3 34eb48c text 2 76526b0 text 1 HEAD https://sta..