git init
git remote add production "ssh://domain.com/foo.git/"
git fetch origin
npm install --production --silent
问题是git fetch
似乎正在提取大量提交。
我只想从原始远程获取主分支的提示。有没有人知道从某个分支获取最新的提交?
答案 0 :(得分:2)
由于您从远程来源获取更改,因此您可以运行此单行:
git clone ssh://domain.com/foo.git --depth=1
答案 1 :(得分:1)
看起来像
git fetch origin master --depth=1
似乎有用