본문 바로가기

git12

Git 개인키(Private Key) 클라이언트에 등록 - Permission denied (publickey) #### Git 개인키(Private Key) 클라이언트에 등록 - Permission denied (publickey) ``` 1. Add Public key ( Server ) 2. Add Private key (Client) ``` ### : C:/Users/[사용자]/.ssh/config ``` Host github.com HostName github.com IdentityFile ~/.ssh/개인키파일 User Github사용자 아이디 ``` ``` # # GitHub # Host github.com HostName github.com PreferredAuthentications publickey IdentityFile ~/.ssh/gh_id_rsa # # bitbucket # Host bitb.. 2021. 9. 4.
[git] warning: LF will be replaced by CRLF in bin/cmder_mini/LICENSE # git add > warning: LF will be replaced by CRLF in bin/cmder_mini/LICENSE. C:\Work>git add . warning: LF will be replaced by CRLF in bin/cmder_mini/LICENSE. The file will have its original line endings in your working directory # Do git config --global core.safecrlf false 2021. 6. 17.
Git Clone - Error SSL certificate git config --global http.sslVerify false 2019. 8. 28.
git flow # git flow #### # bit bucket git flow ( dev ) 1. checkout jihoon 2. pull dev, jihoon 3. checkout feature 4. merge to jihoon 5. push to jiooon 6. dev pull request #### # bit bucket git flow ( mydev ) - 로컬 feature에 mydev Pull 갱신을 통한 mydev-jiooon 1. checkout mydev-jihoon 2. pull mydev, mydev-jihoon 3. checkout feature 4. merge to mydev-jihoon 5. push to mydev-jiooon 6. mydev pull request - 로컬 featu.. 2019. 7. 30.
Upload files to jsdelivr CDN ( github ) # Upload files to jsdelivr CDN ( github ) ### Reference - [www.jsdelivr.com](https://www.jsdelivr.com/) - [https://okky.kr/article/438705](https://okky.kr/article/438705) - [https://github.com/jsdelivr/jsdelivr#github](https://github.com/jsdelivr/jsdelivr#github) - [https://github.com/jsdelivr/jsdelivr](https://github.com/jsdelivr/jsdelivr) - [https://github.com/softm/jsdelivr](https://github.co.. 2019. 7. 9.
git flow git flow # bit bucket git flow ( dev ) 1. checkout jihoon 2. pull dev, jihoon 3. checkout feature 4. merge to jihoon 5. push to jiooon 6. dev pull request # bit bucket git flow ( mydev ) # 로컬 feature에 mydev Pull 갱신을 통한 mydev-jiooon 1. checkout mydev-jihoon 2. pull mydev, mydev-jihoon 3. checkout feature 4. merge to mydev-jihoon 5. push to mydev-jiooon 6. mydev pull request # 로컬 feature를 mydev에 P.. 2019. 1. 30.