gitを使用してローカルコードをリモートサーバーにデプロイしようとしています。
これが私のローカルフォルダmywebsite/で行ったことです:
git init
git add .
git commit -m "Initial commit"
次に、私のWebサーバーで:
mkdir ~/public_html/myrepo.git
cd myrepo.git
git init --bare
次に、私のローカルフォルダmywebsite /:
git remote add remote_mywebsite ssh://user@domain.com:port/~/public_html/myrepo.git
git push remote_mywebsite master
これはこの結果をもたらしました:
Counting objects: 89, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (74/74), done.
Writing objects: 100% (89/89), 61.94 KiB, done.
Total 89 (delta 2), reused 0 (delta 0)
To ssh://user@domain.com:8943/~/public_html/myrepo.git
* [new branch] master -> master
git pull remote_mywebsite
しかし、myrepo.gitでWebサーバーにログインすると、これらのファイルとフォルダーがまだ残っています。
./
../
branches/
config
description
HEAD
hooks/
info/
objects/
refs/
また、ローカルのmywebsiteフォルダーにあるファイルとフォルダーを取得しません。
リモートのmyrepo.gitフォルダーにあるコードを取得するにはどうすればよいですか?私は何か間違ったことをしましたか?
あなたの助けをどうもありがとう!