<p>Hello, </p>
<p>I just started playing with Go and I have this strange problem. I found a Go library that I wanted to contribute to. I forked the project and quickly created a sample Go application that will try to import my fork. But because of the canonical import the original author has set, I cannot import my fork. I can change it but then how I'm supposed to make a PR on it?</p>
<p>Did I get anything wrong? What is the process of contributing to open source Go projects?</p>
<hr/>**评论:**<br/><br/>aboukirev: <pre><p>Don't <code>go get</code> your fork. Instead <code>git clone</code> it under appropriate folder structure (mimicking canonical url) in vendor folder of your test project. </p></pre>tv64738: <pre><p>No need to use <code>git clone</code> manually, you can <code>go get</code> the upstream, <code>git remote add</code> your fork.</p></pre>izuriel: <pre><p>Chances are you already have the library installed. So <code>cd</code> into it and add your fork as another remote. Checkout and push code to your remote and you can easily pull in changes made to primary repo as well. </p></pre>
这是一个分享于 的资源,其中的信息可能已经有所发展或是发生改变。
入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889
- 请尽量让自己的回复能够对别人有帮助
- 支持 Markdown 格式, **粗体**、~~删除线~~、
`单行代码`
- 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
- 图片支持拖拽、截图粘贴等方式上传