3
3
.. _chapter-git_trac :
4
4
5
5
====================================
6
- Optional: Using the Git-Trac Command
6
+ Optional: Using the Git-Issue Command
7
7
====================================
8
8
9
9
.. WARNING ::
10
10
11
11
**Sage development is scheduled to move to GitHub in February 2023. ** The exact
12
12
date will be announced in `<https://groups.google.com/g/sage-devel >`_. After
13
13
the transition, some parts of this guide (especially those related with `the
14
- Sage Trac server <https://trac.sagemath.org> `_) will become obsolete and be
15
- updated according to the new workflow on GitHub. See our `transition guide from Trac to
14
+ Sage Issue server <https://trac.sagemath.org> `_) will become obsolete and be
15
+ updated according to the new workflow on GitHub. See our `transition guide from Issue to
16
16
GitHub
17
17
<https://github.com/sagemath/trac-to-github/blob/master/docs/Migration-Trac-to-Github.md> `_
18
18
for the preliminary version of the workflow.
@@ -25,7 +25,7 @@ perform every development task with just git and a web browser.
25
25
26
26
.. _section-git_trac-install :
27
27
28
- Installing the Git-Trac Command
28
+ Installing the Git-Issue Command
29
29
===============================
30
30
31
31
::
@@ -58,7 +58,7 @@ there whenever you need to update the ``git-trac`` command.
58
58
59
59
.. _section-git_trac-setup :
60
60
61
- Git and Trac Configuration
61
+ Git and Issue Configuration
62
62
==========================
63
63
64
64
.. NOTE ::
@@ -75,7 +75,7 @@ authentication mechanism is needed. To set up ``git trac``, first go
75
75
to the Sage directory and tell ``git trac `` about your trac account::
76
76
77
77
[user@localhost sage]$ git trac config --user USERNAME --pass 'PASSWORD'
78
- Trac xmlrpc URL:
78
+ Issue xmlrpc URL:
79
79
https://trac.sagemath.org/xmlrpc (anonymous)
80
80
https://trac.sagemath.org/login/xmlrpc (authenticated)
81
81
realm sage.math.washington.edu
@@ -98,8 +98,8 @@ a generated token by passing ``--token=<token>`` instead of ``--pass``::
98
98
99
99
[user@localhost sage]$ git trac config --user=<username> --token=<token>
100
100
101
- This is required if you authenticate to Trac with your GitHub account, as
102
- you do not have a Trac password. Logged in users can find their token
101
+ This is required if you authenticate to Issue with your GitHub account, as
102
+ you do not have a Issue password. Logged in users can find their token
103
103
under :trac: `the token tab in preferences on the trac site <prefs/token> `.
104
104
105
105
.. NOTE ::
@@ -142,7 +142,7 @@ secured with SSH keys, which you must have set up as in
142
142
fetch url and does not require SSH.
143
143
144
144
145
- Trac Tickets and Git Branches
145
+ Issue Tickets and Git Branches
146
146
=============================
147
147
148
148
Now let's start adding code to Sage!
@@ -191,7 +191,7 @@ local branch to make your edits, you would just run::
191
191
192
192
[user@localhost sage]$ git trac checkout 12345
193
193
Loading ticket #12345...
194
- Checking out Trac #13744 remote branch u/user/last_twin_prime -> local branch t/12345/last_twin_prime...
194
+ Checking out Issue #13744 remote branch u/user/last_twin_prime -> local branch t/12345/last_twin_prime...
195
195
196
196
The ``git trac checkout `` command downloads an existing branch (as
197
197
specified in the "Branch:" field on the trac ticket) or creates a new
@@ -250,7 +250,7 @@ someone and want to share your changes "up until now". This is simply
250
250
done by::
251
251
252
252
[user@localhost sage]$ git trac push
253
- Pushing to Trac #12345...
253
+ Pushing to Issue #12345...
254
254
Guessed remote branch: u/user/last_twin_prime
255
255
256
256
To git@trac.sagemath.org:sage.git
0 commit comments