|
| 1 | +# Using Git |
| 2 | + |
| 3 | +Knative on OpenShift uses Git to manage repositories. This guide explains how to set up your system to connect to the proper git repositories. |
| 4 | + |
| 5 | +`openshift-knative/docs`is a public GitHub repository that hosts the Knative on OpenShift documentation. |
| 6 | + |
| 7 | +* [Installing Git](#Installing-Git) |
| 8 | +* [Configuring Git](#Configuring-Git) |
| 9 | +* [Fork the upstream repository](#Fork-the-upstream-(GitHub)-repository) |
| 10 | +* [Add your SSH keys](#Add-your-SSH-keys-to-GitHub) |
| 11 | +* [Updating repository URLs](#Updating-repository-URLs) |
| 12 | +* [Accessing unmerged commits](#Accessing-another-writer’s-unmerged-commits) |
| 13 | +* [Additional resources](#Additional-resources) |
| 14 | + |
| 15 | +---------------------------- |
| 16 | +### Installing Git |
| 17 | + |
| 18 | +If using Fedora, open your terminal and enter the proper installation command. |
| 19 | + |
| 20 | +#### Fedora |
| 21 | +For installation use: |
| 22 | + |
| 23 | +Up to Fedora 21 |
| 24 | +``` |
| 25 | +$ yum install git |
| 26 | +``` |
| 27 | +Fedora 22 and later |
| 28 | +``` |
| 29 | +$ dnf install git |
| 30 | +``` |
| 31 | + |
| 32 | +#### Other operating systems |
| 33 | + |
| 34 | +* [Download Git](https://git-scm.com/downloads) |
| 35 | + |
| 36 | + |
| 37 | +----------------------------------------- |
| 38 | +### Configuring Git |
| 39 | + |
| 40 | +Once you have Git installed, set up your Git account. |
| 41 | + |
| 42 | +#### Procedure |
| 43 | +1. Open **Terminal** |
| 44 | +2. Set your name and email |
| 45 | + |
| 46 | +``` |
| 47 | +$ git config --global user.name "<your-name>" |
| 48 | +$ git config --global user.email "<your-email>" |
| 49 | +``` |
| 50 | + |
| 51 | +> **TIP:** The email you specify should be the same one found in your [email settings](https://help.github.com/articles/adding-an-email-address-to-your-github-account/). To keep your email address hidden, see [Keeping your email address private](https://help.github.com/articles/keeping-your-email-address-private). |
| 52 | +
|
| 53 | +3. Set your Git defaults |
| 54 | + |
| 55 | +``` |
| 56 | +$ git config --global pull.rebase true |
| 57 | +$ git config --global push.default simple |
| 58 | +``` |
| 59 | + |
| 60 | +----------------------------------------- |
| 61 | +### Fork the upstream (GitHub) repository |
| 62 | + |
| 63 | +Fork the `openshift-knative/docs` upstream repository to create a copy under your own GitHub ID. Clone your forked repository to bring your GitHub repository files to your local machine. Your forked repository is now the `origin` repository for your local files. |
| 64 | + |
| 65 | +#### Procedure |
| 66 | +1. Open a browser and navigate to the upstream repository located at https://github.com/openshift-knative/docs.git |
| 67 | +2. Click **Fork** located in the upper right under your profile icon. |
| 68 | +3. Select your user account for the location of the forked repository. This creates your own copy of the repository under your own GitHub ID. |
| 69 | + |
| 70 | +> **NOTE:** For more information on [forking](https://help.github.com/articles/fork-a-repo/) and [cloning](https://help.github.com/articles/cloning-a-repository/), consult the official [documentation](https://help.github.com/). |
| 71 | +
|
| 72 | + |
| 73 | +----------------------------------------- |
| 74 | +### Add your SSH keys to GitHub |
| 75 | +If you choose to use the SSH address for your clones, you will need to add an SSH Key to GitHub first. |
| 76 | + |
| 77 | +#### Procedure |
| 78 | +1. Open *Terminal*. |
| 79 | +2. Check to see if you have a public SSH key: |
| 80 | + |
| 81 | +```` |
| 82 | +$ ls ~/.ssh/ |
| 83 | +```` |
| 84 | +3. If you do not have a key, generate one: |
| 85 | + |
| 86 | +``` |
| 87 | +$ ssh-keygen -t rsa -C "<your-email>" |
| 88 | +``` |
| 89 | +4. Open your key in an editor: |
| 90 | + |
| 91 | +``` |
| 92 | +$ cd ~/.ssh/ |
| 93 | +$ vi id_rsa.pub |
| 94 | +``` |
| 95 | +5. Copy the contents of the file to your clipboard. |
| 96 | +6. Visit [https://github.com/settings/keys](https://github.com/settings/keys) |
| 97 | +7. Click **New SSH Key**. |
| 98 | +8. Name your key and paste the contents of your key file. |
| 99 | +9. Click **Add SSH Key**. |
| 100 | + |
| 101 | + |
| 102 | +----------------------------------------- |
| 103 | +### Updating repository URLs |
| 104 | + |
| 105 | +If the upstream repository is moved, you can change the downstream URL by using the following command: |
| 106 | + |
| 107 | +``` |
| 108 | +$ git remote set-url upstream https://github.com/<new upstream> |
| 109 | +``` |
| 110 | + |
| 111 | +Use the following command any time you need to fetch the latest source code locally: |
| 112 | + |
| 113 | +``` |
| 114 | +$ git fetch upstream |
| 115 | +``` |
| 116 | + |
| 117 | + |
| 118 | +------------------------------------------ |
| 119 | +### Accessing another writer’s unmerged commits |
| 120 | + |
| 121 | +This is the process you can use if you need commits another writer has submitted that is not yet merged. |
| 122 | + |
| 123 | +1. Check out a new topic branch from upstream/master as you normally do. |
| 124 | + |
| 125 | +``` |
| 126 | +$ git fetch upstream |
| 127 | +$ git checkout -b <new-topic-branch> upstream/master |
| 128 | +``` |
| 129 | + |
| 130 | +2. If you have not yet added that writer’s remote repository, add it now. |
| 131 | + |
| 132 | +``` |
| 133 | +$ git remote add -f <user> [email protected]:<user>/strimzi-kafka-operator.git |
| 134 | +``` |
| 135 | + |
| 136 | +3. Rebase to bring in the changes that are in that user’s outstanding |
| 137 | + `origin/<merge-request-branch>` branch. |
| 138 | + |
| 139 | +``` |
| 140 | +$ git rebase <user>/<merge-request-branch> |
| 141 | +``` |
| 142 | + |
| 143 | +--------------------------------------- |
| 144 | +### Additional resources |
| 145 | + |
| 146 | +* [Official Git Site](https://git-scm.com) |
| 147 | +* [GitHub Help](http://help.github.com) |
0 commit comments