Warning Warning: Error searching on GitHub: GitHub API Error: Bad credentials The GitHub credentials in the macOS keychain may be invalid. Clear them with: printf "protocol=https\nhost=github.com\n" | git credential-osxkeychain erase Create a GitHub personal access token: https://github.com/settings/tokens/new?scopes=gist,public_repo,workflow&description=Homebrew echo 'export HOMEBREW_GITHUB..
[Git] git과 github 사용하기 git이란? https://git-scm.com/ git은 리누스 토발즈가 개발한 분산형 버전 관리 시스템(VCS)입니다. git의 장점 매우 빠른 속도와 분산형 저장소를 지원한다는 장점이 있기에 많은 개발자들이 Git을 사용하여 관리합니다. git을 대표적으로 github와 연동하여 개인 프로젝트를 혼자 관리할 수 있고, 혹은 다른 팀원들과 협업을 할 수도 있으며, 개인적으로 굳이 남들에게 공개하지 않고도 private 하게 이용할 수도 있습니다. github란? https://github.com/ GitHub is how people build software GitHub는 사람들이 소프트웨어를 개발하는 방법입니다. 대표적인 무료 git 저장소로 2008년에 ..