Git | Github
[Git] Git bash - 스크랩
hans-j
2022. 12. 17. 03:27
빛과 소금같은 블로그 글!!
여전히 clean -xdf 악몽에서 벗어나지 못했지만
이 게시글 덕분에 무사히 commit을 했다 따흐흑 감동의 눈물...감사합니다 감사합니다
![](https://t1.daumcdn.net/keditor/emoticon/niniz/large/010.gif)
https://shortcuts.tistory.com/m/8
[총정리] 깃허브(Github) 파일 업로드, 파일 올리기 (git bash)
요약 //저장소 생성 및 연결 $ git init $ git remote add origin [원격저장소 주소] $ git branch -m master main //파일 업로드 $ git pull origin main $ git add . $ git commit -m "commit message" $ git push origin main //추가적인 명령
shortcuts.tistory.com
[Git] 브랜치 생성 및 전환 : git branch, git checkout
[Git] 브랜치 생성 및 전환 : git branch, git checkout 1) 브랜치 생성 git branch "생성할 브랜치 이름" git branch testBranch 명령어를 입력하여 testBranch를 생성했다. 2) 브랜치 목록 git branch 명령어를 입력하여
ng11.tistory.com