git init , git commit -a 등을 수행 한 my-project라는 폴더가 있습니다 .
이제 원격 서버의 / mnt / foo / bar에있는 빈 폴더로 푸시하려고합니다.
어떻게해야합니까?
내가 읽은 내용에 따라 시도했습니다.
cd my-project
git remote add origin ssh://user@host/mnt/foo/bar/my-project.git
git push origin master
그것은 옳지 않은 것처럼 보였고 (출처가 목적지보다 먼저 올 것이라고 가정합니다)
fatal: '/mnt/boxee/git/midwinter-physiotherapy.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
원격 호스트에 액세스 할 때마다 매번 Git 저장소를 수동으로 초기화 할 필요가 없도록 작동하고 싶습니다 ... 그렇게해야합니까? 내가 올바른 길을 가고 있습니까?
감사.