Git
- tips (한글) : https://github.com/mingrammer/git-tips
branch
git checkout -b feature/branch-name // 현재 브랜치로 다른 브랜치 따기
Switched to a new branch 'feature/branch-name'
git merge feature/another-branch // 현재 브랜치에 다른 브랜치 merge
git checkout -b feature/branch-name // 현재 브랜치로 다른 브랜치 따기
Switched to a new branch 'feature/branch-name'
git merge feature/another-branch // 현재 브랜치에 다른 브랜치 merge