'깃허브'에 해당되는 글 20건
- 2024.10.30 깃허브 코드스페이스
- 2024.06.10 깃허브 위키
- 2023.08.27 깃 예외 추가
- 2022.06.25 깃허브 복사
- 2022.06.09 warning: LF will be replaced by CRLF in
- 2022.05.17 You have divergent branches and need to specify how to reconcile them
- 2022.02.19 소스트리 사용법
- 2022.01.11 깃허브 이슈관련
이쯤되면 딱봐도 감이 잡힐텐데
gitignore 열어보면
이런식으로 되어있다
이런식으로 폴더예외 추가함
[Tt]이런건 temp랑 Temp 둘다라는 뜻
참고로 이미 커밋해서 올라간건 적용 안 되드라;
이런거 찾긴 했는데 안 지워지길래 그냥 위에있는 AssetStoreTools폴더 만들어서 그 하위로 옮기는거로 땡침
근데 원래 이 폴더 에셋스토어에 올리는 파일이 들어있는 폴더다
'깃허브' 카테고리의 다른 글
깃허브 위키 (0) | 2024.06.10 |
---|---|
깃허브 복사 (0) | 2022.06.25 |
warning: LF will be replaced by CRLF in (0) | 2022.06.09 |
git clone --mirror https://github.com/userID/RepoOrigin.git
cd RepoOrigin.git
git remote set-url --push origin https://github.com/userID/RepoClone.git
git push --mirror
이렇게 하고 다운받으면 된다
근데 해보니까 처음 퍼블리싱한게 충돌나서 홈피에서 만들고 해야할듯...
'깃허브' 카테고리의 다른 글
깃 예외 추가 (0) | 2023.08.27 |
---|---|
warning: LF will be replaced by CRLF in (0) | 2022.06.09 |
You have divergent branches and need to specify how to reconcile them (0) | 2022.05.17 |
일반적으로 프로젝트를 끄고나서 올리면 해결된다
만약 그래도 안 된다면 아래를 참고
리눅스,맥 에서는 LF
초창기 맥에서는 CR
윈도우에서는 CRLF를 써서 발생하는 문제이다
윈도우 명령어
git config core.autocrlf true
리눅스,맥 명령어
git config core.autocrlf true input
저거 치면 자동변환된다
그러고도 안되면 그냥 프로젝트를 끄고 올리면 된다
'깃허브' 카테고리의 다른 글
깃허브 복사 (0) | 2022.06.25 |
---|---|
You have divergent branches and need to specify how to reconcile them (0) | 2022.05.17 |
소스트리 사용법 (0) | 2022.02.19 |
hint: You have divergent branches and need to specify how to reconcile them.
hint: You can do so by running one of the following commands sometime before
hint: your next pull:
hint:
hint: git config pull.rebase false # merge
hint: git config pull.rebase true # rebase
hint: git config pull.ff only # fast-forward only
hint:
hint: You can replace "git config" with "git config --global" to set a default
hint: preference for all repositories. You can also pass --rebase, --no-rebase,
hint: or --ff-only on the command line to override the configured default per
hint: invocation.
fatal: Need to specify how to reconcile divergent branches.
분기있어서 그런건데
그냥 커밋 취소하고 Pull 받고 다시 커밋푸시하면 된다
'깃허브' 카테고리의 다른 글
warning: LF will be replaced by CRLF in (0) | 2022.06.09 |
---|---|
소스트리 사용법 (0) | 2022.02.19 |
깃허브 이슈관련 (0) | 2022.01.11 |
'깃허브' 카테고리의 다른 글
You have divergent branches and need to specify how to reconcile them (0) | 2022.05.17 |
---|---|
깃허브 이슈관련 (0) | 2022.01.11 |
unable to restore stash when changes are present on your branch (0) | 2021.11.22 |
'깃허브' 카테고리의 다른 글
소스트리 사용법 (0) | 2022.02.19 |
---|---|
unable to restore stash when changes are present on your branch (0) | 2021.11.22 |
깃허브 머지 충돌 대응법 (0) | 2021.11.03 |