mjeongriver
article thumbnail
github 레파지토리 미러링 및 에러 해결
TIL/Git 2023. 12. 1. 09:51

더보기 git clone --bare [복사할 저장소의 git 주소] git push --mirror [새로운 저장소의 git 주소] 여기서 가져오면서 The requested URL returned error 에러 발생하여 구글링 해보니 해당 주소에 접근 권한이 없어서 발생하는 에러라고 한다. 해결 방법 1. git remote -v 2. git remote set-url origin https://[YourUserGitName]@github.com/[RepositoryGitName]REPOSITORY.git (우선 remote 확인 후 옮기려고 하는 레파지토리로 remote 변경) 이랬는데도 unable to access~라고 뜨길래 SSH key 등록 방법을 찾으면서 SSH에 대해서도 검색해보았다...

article thumbnail
day72-git
TIL/Git 2023. 1. 27. 10:12

git에서 module은 받을 수 없다. yarn이든 npm이든 실행이 안되면 우선 package-lock.json 및 yarn.lock 파일을 삭제 커맨드창에 npm install - 모듈 다운로드 npm start 이렇게 하면 잘 실행된다. 그리고 git branch 확인하면 git에 있는 브랜치 내역이 나옴 1. git checkout master라고 치면 master로 감 2. master에서 git branch -D minjeong 내꺼 브랜치 지움 3. git branch에서 master만 남아있는거 확인 4. 그리고 master에서 git pull origin master 쳐서 master에 있는 거 땡겨오기 git add . git commit - m "real start" git push..

article thumbnail
day47-git
TIL/Git 2022. 12. 8. 19:51

1. git 사용하기 - 다운로드 user@DESKTOP-48B2DLF MINGW64 ~/Desktop/ $ git init Initialized empty Git repository in C:/Users/user/Desktop/ user@DESKTOP-48B2DLF MINGW64 ~/Desktop/ $ git status On branch master No commits yet Untracked files: (use "git add ..." to include in what will be committed) ex01.txt nothing added to commit but untracked files present (use "git add" to track) user@DESKTOP-48B2DLF MIN..

검색 태그