Git 시작하기 : 수난시대
[git concept]
1. repository
2. tracking
3. staging
4. committing
[git tutorial]
누구나 쉽게 이해할 수 있는 Git 입문~버전 관리를 완벽하게 이용해보자~ | Backlog
누구나 쉽게 알 수 있는 Git에 입문하신 것을 환영합니다. Git을 사용해 버전 관리를 할 수 있도록 함께 공부해봅시다!
backlog.com
git push 사용법/팁
Engineering Blog by Dale Seo
www.daleseo.com
[git fatal] Authentication failed for.. 해결 과정
비번을 바꾸면서 생기는 문제
GitHub | Authentication failed 해결과 토큰 발급 방법
🎯 상황 (Context) macOS에서 GitHub Repo를 클론해서 사용하려고 Username과 Password를 입력했는데, 다음과 같이 에러가 발생합니다. remote: Support for password authentication was removed on August 13,..
yian.tistory.com
[git fatal] Authentication failed for.. 해결 과정
fatal: authentication failed for.. 발생한 경우 해결 과정... 1) --global로 처리 2) access token 인증 방식 변경 적용 방법 ...
velog.io
[git] github desktop 사용하는 법
[git] github desktop 사용하는 법
github desktop 사용하는 법에 대하여 알아보자. github desktop으로 repository 만들기, publish하기, commit 하기
velog.io
[git] branch/checkout/merge 사용하는 법
[git] 시작하기
git config --global init.defaultBranch main
git init
git add [파일1] [파일2] ...
git commit -m "할말"
git remote add [저장소명,origin] [url]
git push origin master