git 14

[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

[Git] Your branch is up to date with 'origin/master'. nothing to commit, working tree clean

Your branch is up to date with 'origin/master'. nothing to commit, working tree clean 방법 1. 깃허브 저장소 클론(Repo Clone) vscode(Visual Studio Code)에서 git clone(복제) 하기 1. vscode 실행 후 f1버튼 -> git clone 검색 2. git url 입력 3. 리포지토리 위치 선택 4. 복제 완료 후 새 창에서 열기 thisisspear.tistory.com 기존 local 저장소를 삭제하고 다시 add-commit-push를 시도하니 잘 된다.

개발(Web)/VCS 2021.02.17

[Git] Changes not staged for commit과 Untracked files

Changes not staged for commit과 Untracked files Node.js 에러 (Node.js error) npm WARN optional/notsup SKIPPING OPTIONAL DEPENDENCY: 어쩌구 Ⅰ. 문제 발생 Ⅱ. 원인 및 해결방안 C:\Users\pro\AppData\Roaming\npm\node_modules\ionic\bin\ionic npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\i.." data-og-host="roc.. shinye0213.tistory.com 방법 1. 루트 폴더(root folder)로 이동

개발(Web)/VCS 2021.02.08

[Git] warning: LF will be replaced by CRLF in package-lock.json.

[따라하며 배우는 노드, 리액트 시리즈] 기본 강의 09. 비밀 설정 정보 관리 Ⅰ. config 폴더 생성 module.exports = { mongoURI:'mongodb+srv://유저명:비밀번호@boilerplate.g9mtm.mongodb.net/DB명?retryWrites=true&w=majority' } if(process.env.NODE_ENV === 'production') { // pr.. shinye0213.tistory.com warning: LF will be replaced by CRLF in package-lock.json. 방법 1. 경고 메시지 안 보이게 설정 [git] warning: LF will be replaced by CRLF in smth 윈도우에서 작업을 하다보..

개발(Web)/VCS 2021.02.06

[Git/GitHub] Failed to write credentials for 'https://github.com/이름/레포명.git' to secure store Salt must be 8 bytes long

[eclipse][git] 이클립스 git 처리 중 failed to write credential 'https://github.com' 오류 이클립스에 저장된 git 저장소의 키가 꼬이게 되면 이런 오류가 발생한다. failed to write credential 'https://github.com' 이 오류가 발생하면 암호를 매번 다시 넣어야 한다. 이럴 때는 이클립스에 저장된 118k.tistory.com Eclipse secure storage Is it possible to disable completely the secure storage password of Eclipse? I am running Eclipse Helios on Windows 7. stackoverflow.com

개발(Web)/VCS 2020.12.13

[Git] error: failed to push some refs to 'https://github.com/이름/레포지토리.git

깃 에러(Git error) fatal: pathspec '파일명.확장자명' did not match any files. Ⅰ. fatal: pathspec '파일명.확장자명' did not match any files. * 임의의 텍스트파일을 만든 후 프로젝트로 추가하려고 했다. https://www.youtube.com/watch?v=rhP5pseOJc0&list=PLRx0vPvlEmdD5FLIdwT.. shinye0213.tistory.com error: failed to push some refs to 'https://github.com/이름/레포지토리.git 방법 1. push -f 깃허브, failed to push some refs to~,Updates were rejected because ..

개발(Web)/VCS 2020.07.22

[Git] fatal: pathspec '파일명.확장자명' did not match any files.

fatal: pathspec '파일명.확장자명' did not match any files. 참고한 영상. 순조롭게 따라가다가 11분 20초경부터 문제가 생김 깃(Git), 깃허브(GitHub) 재설치 깃 푸시(Git push) 실패 방법 1. 파일 삭제 fatal: pathspec '파일명.확장자명' did not match any files. → 기존 파일을 삭제해 해결 error: failed to push some refs to 'https://github.com/이름/레포지토리.git → 아래 글에서 해결 깃 에러(Git error) error: failed to push some refs to 'https://github.com/이름/레포지토리.git 깃 에러(Git error) fatal: ..

개발(Web)/VCS 2020.07.22

[Git/GitHub] 깃 설치 및 깃허브 회원가입

깃허브(GitHub) 회원가입 회원가입 절차는 이 영상을 참고하면 됨 깃 원격저장소(git remote repository) 만들기 이 영상을 참고해 레포지토리를 만듦 깃(Git) 설치 Git - Downloads Downloads Mac OS X Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific git-scm.com 깃 명령어(git ..

개발(Web)/VCS 2020.07.21
반응형