2017年5月6日土曜日

git originへpushさせない設定

gitでリモートにpush しないようにする。
git remote set-url --push origin no-pushing
.git/config は以下のようになる。

[remote "origin"]
    url = git://...gitのURL
    fetch = +refs/heads/*:refs/remotes/origin/*
    pushurl = no-pushing

0 件のコメント:

コメントを投稿