123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- .. _forks:
- Forks
- =====
- A fork in Pagure is a copy of a repository. When contributing to a project on
- Pagure, the first step is to fork it. This gives you a place to make changes
- to the project and, if you so wish, contribute back to the original project.
- If you're not already familiar with Git's distributed workflow,
- `the Pro Git book has an excellent introduction
- <https://git-scm.com/book/en/v2/Distributed-Git-Distributed-Workflows>`_.
- You can see a list of projects you've forked on your home page.
- .. _create-fork:
- Create a Fork on Pagure
- -----------------------
- To fork a project, simply navigate to the project on Pagure and click
- the fork button. You will then be redirected to your new fork.
- .. _configure-local-git:
- Configure your Local Git Repository
- -----------------------------------
- Now that you have forked the project on Pagure, you're ready to configure a
- local copy of the repository so you can get to work. First, clone the
- repository. The URL for the repository is on the right-hand side of the
- project overview page. For example::
- $ git clone ssh://git@pagure.io/forks/jcline/pagure.git
- $ cd pagure
- After cloning your fork locally, it's a good idea to add the upstream
- repository as a `git remote <https://git-scm.com/docs/git-remote>`_. For
- example::
- $ git remote add -f upstream ssh://git@pagure.io/pagure.git
- This lets you pull in changes that the upstream repository makes after you
- forked. Consult Git's documentation for more details.
- Pushing Changes
- ---------------
- After you :ref:`configure-local-git` you're ready to make your changes and
- contribute them upstream. First, start a new branch::
- $ git checkout -b my-feature-or-bugfix
- It's a good idea to give the branch a descriptive name so you can find it later.
- Next, make your changes. Once you're satisfied, add the changes to Git's staging
- area and commit the changes::
- $ git add -A # add all changes
- $ git commit -s # prepare changes for upload
- Your text editor of choice will open and you can write your commit message.
- If you have not done so already :ref:`upload-your-ssh-key` now.
- Afterwards, you are ready to push your changes to your remote fork::
- $ git push -u origin my-feature-or-bugfix # upload changes
- In case you cloned the repo via HTTP, for example using a command like `git
- clone https://...`, the push will fail. Pagure.io does not support pushing
- over HTTP. An easy workaround is to use::
- $ git push -u origin my-feature-or-bugfix ssh://git@pagure.io/forks/jcline/pagure.git
- You are now ready to :ref:`open-pull-request`.
|