]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
doc/dev: adding upstream repo name 39615/head
authorZac Dover <zac.dover@gmail.com>
Mon, 22 Feb 2021 14:20:40 +0000 (00:20 +1000)
committerZac Dover <zac.dover@gmail.com>
Tue, 23 Feb 2021 15:48:13 +0000 (01:48 +1000)
This commit makes one sentence slightly less
ambiguous by designating the location from
which the "ceph fetch" command fetches objects.

Signed-off-by: Zac Dover <zac.dover@gmail.com>
doc/dev/developer_guide/basic-workflow.rst

index 9c1206ac9498fffc52c5e216c61302d8f2b92379..5b7c228dab6800b40d74ddb726232ef8644185e8 100644 (file)
@@ -122,10 +122,9 @@ Add the upstream repo as a "remote" and fetch it:
    git remote add ceph https://github.com/ceph/ceph.git
    git fetch ceph
 
-Fetching is a process that downloads all objects (commits, branches) that have
-been added since the last sync. These commands download all the branches from
-``ceph/ceph.git`` to the local git repo as ``remotes/ceph/$BRANCH_NAME`` and
-can be referenced as ``ceph/$BRANCH_NAME`` in local git commands.
+These commands fetch all the branches and commits from ``ceph/ceph.git`` to the
+local git repo as ``remotes/ceph/$BRANCH_NAME`` and can be referenced as
+``ceph/$BRANCH_NAME`` in local git commands.
 
 
 Resetting Local Master to Upstream Master