| ... | ... | @@ -88,7 +88,7 @@ pub fn build(b: *Builder) void { |
| 88 | 88 | ``` |
| 89 | 89 | |
| 90 | 90 | --- |
| 91 | | ## Contributing to dependency upstream\ |
| 91 | ## Contributing to dependency upstream |
| 92 | 92 | When using Git dependencies, Zigmod streamlines the process of contributing back fixes and improvements to your upstream. This is due to the fact that Zigmod will preserve the `.git` folder when cloning so that you may work with it. |
| 93 | 93 | |
| 94 | 94 | Suppose we have the package https://github.com/octocat/zig-hello. |
| ... | ... | @@ -97,7 +97,7 @@ Zigmod will `git clone` its contents to `.zigmod/deps/git/github.com/octocat/zig |
| 97 | 97 | |
| 98 | 98 | Then fork the repository on `github.com` or wherever it is hosted and add a local remote so that you have something to push to. `git remote add fork https://github.com/you/zig-hello`. |
| 99 | 99 | |
| 100 | | Then push your local changes with `git push origin master` and create your pull request. |
| 100 | Then push your local changes with `git push fork master` and create your pull request. |
| 101 | 101 | |
| 102 | 102 | --- |
| 103 | 103 | ## Using Zigmod in Github Actions |