4
4
Setting Up Git
5
5
==============
6
6
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
-
13
7
14
8
.. _section-git-install :
15
9
16
10
Installing Git
17
11
--------------
18
12
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:
22
14
23
15
Debian / Ubuntu
24
16
Run ``sudo apt-get install git-core ``
@@ -54,11 +46,7 @@ Some further resources for installation help are:
54
46
Configuring Git
55
47
---------------
56
48
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] ``,
62
50
63
51
.. CODE-BLOCK :: shell-session
64
52
@@ -77,3 +65,6 @@ This will write the settings into your :ref:`Git configuration file
77
65
Of course, replace ``
Alice Adventure `` and ``
[email protected] `` with your
78
66
actual name and email address.
79
67
68
+ This is the basic Git configuration for now. For further tips on configuring
69
+ Git, see :ref: `section-git-configuration `.
70
+
0 commit comments