Skip to content

Commit f5af640

Browse files
committed
Remove duplicates in git_setup
1 parent 644fd17 commit f5af640

File tree

2 files changed

+6
-15
lines changed

2 files changed

+6
-15
lines changed

src/doc/en/developer/git_setup.rst

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,13 @@
44
Setting Up Git
55
==============
66

7-
To work on the Sage source code, you need a working Git installation,
8-
configured at least to use your name and email address for commits.
9-
10-
For further information about Git, see :ref:`chapter-git-background`, but this
11-
is not required for a beginning Sage developer.
12-
137

148
.. _section-git-install:
159

1610
Installing Git
1711
--------------
1812

19-
First, try Git on the command line by typing ``git``. Most platforms will have it installed by
20-
default if other development tools are installed. If that fails, use the
21-
following to install Git:
13+
Depending on your platform, use the following to install Git:
2214

2315
Debian / Ubuntu
2416
Run ``sudo apt-get install git-core``
@@ -54,11 +46,7 @@ Some further resources for installation help are:
5446
Configuring Git
5547
---------------
5648

57-
The commit message of any change contains your name and email address to
58-
acknowledge your contribution and to have a point of contact if there are
59-
questions in the future. Filling it in is required if you want to share your
60-
changes. The simplest way to do this is from the command line. Assuming your
61-
name ``alice`` and email address ``[email protected]``,
49+
Assuming your name ``alice`` and email address ``[email protected]``,
6250

6351
.. CODE-BLOCK:: shell-session
6452
@@ -77,3 +65,6 @@ This will write the settings into your :ref:`Git configuration file
7765
Of course, replace ``Alice Adventure`` and ``[email protected]`` with your
7866
actual name and email address.
7967

68+
This is the basic Git configuration for now. For further tips on configuring
69+
Git, see :ref:`section-git-configuration`.
70+

src/doc/en/developer/walkthrough.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Don't worry about the giant list of subcommands. You really only need a handful
4040
of them for effective development, and we will walk you through them in this
4141
guide. If you got a "command not found" error, then you don't have Git
4242
installed; now is the time to install it. See
43-
:ref:`chapter-git-setup` for instructions.
43+
:ref:`section-git-install` for instructions.
4444

4545
Because we also track who does what changes with Git, you must tell
4646
Git how you want to be known. Check if Git knows you::

0 commit comments

Comments
 (0)