我刚刚克隆了一个存储库,做了一些更改,现在我想向作者发送我的补丁。我该怎么办?
我是匿名从github克隆的。
git push origin发布于 2010-08-16 22:35:26
您需要提交到本地存储库,然后才能推送。
但这可能不会起作用,因为您没有登录。
发布于 2010-08-16 22:41:08
如果你也有github账户,请阅读:http://github.com/guides/pull-requests
Eli如果上游作者可以通过ssh、http或git协议访问您的存储库,请写一封电子邮件,他可以从那里获取:git pull http://example.com/cool_stuff.git
否则你应该做git format-patch -o patchdir && tar c patchdir.tar patchdir并将补丁邮寄给上游作者。
发布于 2010-08-16 22:39:17
首先应该派生http://help.github.com/forking/,然后发送一个pull-request:http://github.com/guides/pull-requests
https://stackoverflow.com/questions/3494117
复制相似问题