diff options
-rw-r--r-- | .github/remote-config-example.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/remote-config-example.md b/.github/remote-config-example.md new file mode 100644 index 00000000000..20f8d6b2e37 --- /dev/null +++ b/.github/remote-config-example.md @@ -0,0 +1,14 @@ +Run `git config -e` and add the block below then run `git fetch --all` to update all the GitHub pull request branches. + +``` +[remote "github"] + url = https://github.com/alpinelinux/aports.git + fetch = +refs/heads/*:refs/remotes/github/* + fetch = +refs/pull/*:refs/remotes/github/pr/* +``` + +After you have done this you can merge / squash / rebase / cherry-pick from the command line. + +For example, `git rebase master github/pr/XXX/head; git checkout master` would migrate all the commits from PR #XXX. + +You can then push the results back to the "origin" remote which should be the official Alpine Linux aports repository. |