レンタルサーバにリモートリポジトリを作って、
パソコンからgitのpushをしたいと思っています。
調べてみると、「ssh」や「https」のやり方は見つかります。
なぜ、「http」かというと、なんとなく手軽じゃないかと思ったからです。
gitについては今勉強中でよくわかっていません。
【やった事】
レンタルサーバにsshで接続
mkdir hoge.git
cd hoge.git
git init --bare --shared
git update-server-info
を実行
windowsのtortoisegitで
http://hoge.com/hoge.gitでcloneは出来ます。
しかし、pushすると、
git.exe push --progress "origin" master:master
error: Cannot access URL http://hoge.com/, return code 22
fatal: git-http-push failed
error: failed to push some refs to 'http://hoge.com'
git did not exit cleanly (exit code 1) (593 ms @ 2019/12/30 AM 1:44:44)
のエラーが出ます。
ネットでreturn code 22を調べて
http;//username:password@hoge.com/hoge.git
を試しましたが出来ません。
そもそも、httpでpushできるのでしょうか。
また出来た場合、httpでもuser名やパスワードは必要なのでしょうか。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/30 04:22