⚠️직접 터미널에서 git push origin main을 입력하는 것은 절대 금지!!!
git push origin [브랜치이름] 명령어는 "어디로(origin), 무엇을(branch) 보낼지" 명확하게 지정
feat/dataloader 라는 브랜치를 새로 만듦main 방밖에 없고, feat/dataloaer 라는 방은 없는 상태.이때 git push origin feat/dataloader 라고 딱 짚어서 말해줘야, GitHub가 feat/dataloader라는 방을 새로 만들고 거기에 코드를 넣으라는 구나 알아들음
git push origin feat/A:feat/B 라고 하면 feat/A라고 나 컴퓨터에 있는 브랜치를 feat/B라는 이름으로 올릴 수 있음.