GitHub: 직접 폴더 업로드

1826 단어

단계:


폴더를github에 어떻게 업로드합니까?

이 가능하다, ~할 수 있다,...


git 창설 프로젝트 첫 번째 업로드 문서fatal: No configured push destination.Either specify the URL from the command-line
해결 방법:error:failed to push some refs to'https://github.com/xxxx.git’
git 로컬 창고와 원격 창고 관련failed topush some refs to git 문제 해결
git 오류 보고 – >!remote rejected master -> master (push declined due to email privacy restrictions)
// 

git init

git add .

git commit -m "nothing"

//git push
/* error
fatal: No configured push destination 
	......
*/

git remote add origin 'https://github.com/...'

//git push -u origin master
/* error
	......
 ! [rejected]        master -> master (fetch first)
error: failed to push some refs to 'https://github.com/...'
	......
*/

git pull --rebase origin master

git push -u origin master

//success

좋은 웹페이지 즐겨찾기