bitbucket에서 원격 저장소를 복제했습니다.git push에서 오류가 발생하는 이유는 무엇입니까?
난 아직 변경을하고 변경으로 이미 하나 개의 파일을 가지고 있지 않았다 사실
Your branch is up-to-date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: www/src/app/locale/Test.csv
no changes added to commit (use "git add" and/or "git commit -a")
을 REPO 년이 심볼릭 링크.
는이 오류를 제거하고이 변화를 추진하지만, 얻을려고 : 내가 발견➜ git:(master) git push origin master
Counting objects: 7, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (7/7), done.
Writing objects: 100% (7/7), 535 bytes | 0 bytes/s, done.
Total 7 (delta 5), reused 0 (delta 0)
remote:
remote: One of your commit messages is missing an issue ID:
remote:
remote: 0df2153: test
remote:
remote: For more information, see https://confluence.atlassian.com/x/ZwjoE.
remote:
To https://bitbucket.org/[replaced_url_path].git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://[replaced_url_path].git'
을하는 원격 환매 특약 Test.csv 파일의 이름으로 저 레지스트리와 함께 제공에 : www/src/app/locale/test.csv
이름을 변경하고 푸시하려고했습니다. 같은 결과 - 나는 같은 오류와 함께 그것을 밀어 수 없습니다. How do I commit case-sensitive only filename changes in Git?
항상 결과 이 동일 :
나는 자식 config 옵션git config --system core.ignorecase false/true
여기처럼하려고 노력을 사용하려고했습니다.
오류 메시지를 읽었습니까? 대소 문자를 구분하지 않습니다. –