개발(Web)/VCS 37

[Git/GitHub] GitHub Pages 404 Error

[깃/깃허브] 깃허브 페이지 404 에러 문제 해결방법 (1) 주소 뒤에 index.html 붙이기 해결 방법 (2) 빈 커밋 이용하기 // 터미널에 아래와 같이 입력(--allow-empty는 빈 커밋을 의미함) git commit --allow-empty -m "대충 적어넣고 싶은 메시지" git push 참고 https://stackoverflow.com/questions/11577147/how-to-fix-http-404-on-github-pages/45907768#45907768 How to fix HTTP 404 on Github Pages? Here is my GitHub repository on the gh-pages branch. Everything looks good, I have my..

개발(Web)/VCS 2022.09.22

[Git/GitHub] Renaming a Remote Repository

[깃/깃허브] 원격 저장소(리모트 레포지토리) 이름 바꾸기 // IDE에서 터미널 열고 remote -v // 1. 저장소 위치 먼저 확인 remote -v set-url origin 깃허브주소 // 2. 저장소 위치 바꾼 후 remote -v // 3. 변경된 저장소 위치 재확인 참고 Renaming a repository - GitHub Docs When you rename a repository, all existing information, with the exception of project site URLs, is automatically redirected to the new name, including: Issues Wikis Stars Followers For more informatio..

개발(Web)/VCS 2022.09.08

[Git/GitHub] Push rejected Push master to origin/master was rejected by remote

Push rejected Push master to origin/master was rejected by remote 23:25:32.804: [폴더명] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain origin refs/heads/master:master --set-upstream Enumerating objects: 77, done. Counting objects: 1% (1/77) 중략 Counting objects: 100% (77/77), done. Delta compression using up to 12 threads Compressing objects..

개발(Web)/VCS 2022.03.17

[Android Studio/GitHub] 안드로이드 스튜디오와 깃허브 연동하기 (3)

방법 (3) [Android Studio/GitHub] 안드로이드 스튜디오와 깃허브 연동하기 (2) 방법 (2) 참고 [Git] git ssh clone시 'The authenticity of host ~ can't be established 오류 해결하는 방법 Git을 처음 설치하고 저장소를 ssh clone 받을 때 위의 오류가 발생하는 경우가 있다. 깃허브에서.. shinye0213.tistory.com Can't finish GitHub sharing process Successfully created project 'android_study' on GitHub, but initial push failed: Warning: Permanently added 'github.com,15.164.81.1..

개발(Web)/VCS 2022.02.05

[Android Studio/GitHub] 안드로이드 스튜디오와 깃허브 연동하기 (2)

방법 (2) [Android Studio/GitHub] 안드로이드 스튜디오와 깃허브 연동하기 (1) 방법 (1) [Android Studio/GitHub] 안드로이드 스튜디오와 깃허브 연동하기 (2) 방법 (2) 참고 [Git] git ssh clone시 'The authenticity of host ~ can't be established 오류 해결하는 방법 Git을 처음 설치.. shinye0213.tistory.com [Android Studio/GitHub] 안드로이드 스튜디오와 깃허브 연동하기 (3) 방법 (3) Can't finish GitHub sharing process Successfully created project 'android_study' on GitHub, but initial..

개발(Web)/VCS 2022.02.05

[Android Studio/GitHub] 안드로이드 스튜디오와 깃허브 연동하기 (1)

방법 (1) [Android Studio/GitHub] 안드로이드 스튜디오와 깃허브 연동하기 (2) 방법 (2) 참고 [Git] git ssh clone시 'The authenticity of host ~ can't be established 오류 해결하는 방법 Git을 처음 설치하고 저장소를 ssh clone 받을 때 위의 오류가 발생하는 경우가 있다. 깃허브에서.. shinye0213.tistory.com 참고 안드로이드 스튜디오 깃허브 연동부터 커밋/푸쉬 하는 법 (가장 쉽고 편한 방법!!) Git bash 필요 X 깃허브를 안드로이드 스튜디오에 연동해두기만 한다면 몇 번의 클릭만으로 프로젝트를 깃허브에 올릴 수 있음 Github에 ukebox.tistory.com Use Token으로 안드로이드 ..

개발(Web)/VCS 2022.02.05

[Git/GitHub] 깃허브 페이지 포스팅 (2) Font Awesome Icon

Font Awesome Icon Font Awesome Icon List Introduction 블로그나 사이트 작성 시 icon 이미지들이 많이 필요하게 되는데 이 아이콘을 마치 폰트처럼 사용할 수 있도록 서비스를 제공하는 곳이 있습니다. Font Awesome이라는 곳인데 이 곳에서 제 moon9342.github.io 폰트 에러 수정 Jekyll 기반의 GitHub Page 생성(3) - 웹 폰트 설정 폰트 적용 Font Awesome 적용 출처 : Font Awesome Icon List Introduction 블로그나 사이트 작성 시 icon 이미지들이 많이 필요하게 되는데 이 아이콘을 마치 폰트처럼 사용할 수 있도록 서비스를 제공하는.. shinye0213.tistory.com + TimeZo..

개발(Web)/VCS 2021.03.17

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(6) - Google Search Console 활용

robots.txt User-agent: * Allow: / Sitemap: https://유저명.github.io/sitemap.xml sitemap.xml --- layout: null --- {% for post in site.posts %} {{ site.url }}{{ post.url }}.html {% if post.lastmod == null %} {{ post.date | date_to_xmlschema }} {% else %} {{ post.lastmod | date_to_xmlschema }} {% endif %} {% if post.sitemap.changefreq == null %} weekly {% else %} {{ post.sitemap.changefreq }} {% endif..

개발(Web)/VCS 2021.03.15

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(5) - lunr.js를 이용한 Search 기능 추가 (2)

lunr.js Jekyll 기반의 GitHub Page 생성(5) - lunr.js를 이용한 Search 기능 추가 Jekyll 기반의 GitHub Page 생성은 여러 절로 구성되어 있습니다. Jekyll 기반의 GitHub Page 생성(1) - 환경설정 Jekyll 기반의 GitHub Page 생성(2) - 블로그 수정 & Publishing Jekyll 기반의 GitHub Page 생성(3) - 웹 폰트 moon9342.github.io search.js (function() { function displaySearchResults(results, store) { var searchResults = document.getElementById('search-results'); if (results...

개발(Web)/VCS 2021.03.14
반응형