Skip to content

Commit 4719a3f

Browse files
committed
Remove tab characters
1 parent 3818470 commit 4719a3f

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

src/doc/en/developer/github.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -124,15 +124,15 @@ your fork
124124
Updating files: 100% (9936/9936), done.
125125
[alice@localhost ~]$ cd sage
126126
[alice@localhost sage]$ git remote -v
127-
origin https://github.com/alice/sage.git (fetch)
128-
origin https://github.com/alice/sage.git (push)
127+
origin https://github.com/alice/sage.git (fetch)
128+
origin https://github.com/alice/sage.git (push)
129129

130130
If you already have a local Git repo and only want to link your fork as ``origin`` remote, then do::
131131

132132
[alice@localhost sage]$ git remote add origin https://github.com/alice/sage.git
133133
[alice@localhost sage]$ git remote -v
134-
origin https://github.com/alice/sage.git (fetch)
135-
origin https://github.com/alice/sage.git (push)
134+
origin https://github.com/alice/sage.git (fetch)
135+
origin https://github.com/alice/sage.git (push)
136136
[alice@localhost sage]$ git fetch origin
137137
remote: Enumerating objects: 1136, done.
138138
remote: Counting objects: 100% (1084/1084), done.
@@ -147,10 +147,10 @@ You also add the Sage repo ``sagemath/sage`` as your remote ``upstream``::
147147

148148
[alice@localhost sage]$ git remote add upstream https://github.com/sagemath/sage.git
149149
[alice@localhost sage]$ git remote -v
150-
origin https://github.com/alice/sage.git (fetch)
151-
origin https://github.com/alice/sage.git (push)
152-
upstream https://github.com/sagemath/sage.git (fetch)
153-
upstream https://github.com/sagemath/sage.git (push)
150+
origin https://github.com/alice/sage.git (fetch)
151+
origin https://github.com/alice/sage.git (push)
152+
upstream https://github.com/sagemath/sage.git (fetch)
153+
upstream https://github.com/sagemath/sage.git (push)
154154

155155

156156
.. NOTE::
@@ -161,10 +161,10 @@ You also add the Sage repo ``sagemath/sage`` as your remote ``upstream``::
161161
[alice@localhost sage]$ git remote add origin [email protected]:alice/sage.git
162162
[alice@localhost sage]$ git remote add upstream [email protected]:sagemath/sage.git
163163
[alice@localhost sage]$ git remote -v
164-
origin [email protected]:alice/sage.git (fetch)
165-
origin [email protected]:alice/sage.git (push)
166-
upstream [email protected]:sagemath/sage.git (fetch)
167-
upstream [email protected]:sagemath/sage.git (push)
164+
origin [email protected]:alice/sage.git (fetch)
165+
origin [email protected]:alice/sage.git (push)
166+
upstream [email protected]:sagemath/sage.git (fetch)
167+
upstream [email protected]:sagemath/sage.git (push)
168168

169169
To prevent accidental pushes to ``upstream`` (instead of ``origin``), you may want to disable it by running::
170170

src/doc/en/developer/workflows.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ so that your changes can be reviewed for inclusion in Sage.
1313
Before proceeding, check that you have ``origin`` and ``upstream`` remotes right::
1414

1515
[alice@localhost sage]$ git remote -v
16-
origin https://github.com/alice/sage.git (fetch)
17-
origin https://github.com/alice/sage.git (push)
18-
upstream https://github.com/sagemath/sage.git (fetch)
19-
upstream https://github.com/sagemath/sage.git (push)
16+
origin https://github.com/alice/sage.git (fetch)
17+
origin https://github.com/alice/sage.git (push)
18+
upstream https://github.com/sagemath/sage.git (fetch)
19+
upstream https://github.com/sagemath/sage.git (push)
2020

2121

2222
Development workflow at a glance

0 commit comments

Comments
 (0)