단일 파일 GIT 푸시 테스트
2025-03-25TOC
Push the single file without GIT checkout & pull
git init
git checkout -b temp_branch
git remote set url git@github.com:minias/minias.github.io.git
touch thisfile.md
git add .
git commit -m "onefile push test"
#git push -u origin main
#error: src refspec main does not match any
#error: failed to push some refs to 'github.com-minias:minias/minias.github.io.git'
git push --set-upstream origin temp_branch