Commit 230d8c73 authored by Yusuke Miyazaki's avatar Yusuke Miyazaki Committed by Tim Graham
Browse files

Fixed #25578 -- Corrected the casing of "GitHub".

parent a272db70
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -751,6 +751,7 @@ answer newbie questions, and generally made Django that much better:
    Yasushi Masuda <whosaysni@gmail.com>
    ye7cakf02@sneakemail.com
    ymasuda@ethercube.com
    Yusuke Miyazaki <miyazaki.dev@gmail.com>
    Zachary Voase <zacharyvoase@gmail.com>
    Zach Thompson <zthompson47@gmail.com>
    Zain Memon
+3 −3
Original line number Diff line number Diff line
@@ -40,10 +40,10 @@ used to associate your commits with your GitHub account.
Setting up local repository
---------------------------

When you have created your GitHub account, with the nick "github_nick", and
When you have created your GitHub account, with the nick "GitHub_nick", and
forked Django's repository, create a local copy of your fork::

    git clone git@github.com:github_nick/django.git
    git clone git@github.com:GitHub_nick/django.git

This will create a new directory "django", containing a clone of your GitHub
repository. The rest of the git commands on this page need to be run within the
@@ -103,7 +103,7 @@ You can publish your work on GitHub just by doing::
When you go to your GitHub page you will notice a new branch has been created.

If you are working on a Trac ticket, you should mention in the ticket that
your work is available from branch ticket_xxxxx of your github repo. Include a
your work is available from branch ticket_xxxxx of your GitHub repo. Include a
link to your branch.

Note that the above branch is called a "topic branch" in Git parlance. You are
+2 −2
Original line number Diff line number Diff line
@@ -1494,7 +1494,7 @@ Django will also accept URLs (\fBhttp\fP, \fBhttps\fP, \fBftp\fP) to compressed
archives with the app template files, downloading and extracting them on the
fly.
.sp
For example, taking advantage of Github\(aqs feature to expose repositories as
For example, taking advantage of GitHub\(aqs feature to expose repositories as
zip files, you can use a URL like:
.INDENT 0.0
.INDENT 3.5
@@ -1596,7 +1596,7 @@ Django will also accept URLs (\fBhttp\fP, \fBhttps\fP, \fBftp\fP) to compressed
archives with the project template files, downloading and extracting them on the
fly.
.sp
For example, taking advantage of Github\(aqs feature to expose repositories as
For example, taking advantage of GitHub\(aqs feature to expose repositories as
zip files, you can use a URL like:
.INDENT 0.0
.INDENT 3.5
+2 −2
Original line number Diff line number Diff line
@@ -1097,7 +1097,7 @@ Django will also accept URLs (``http``, ``https``, ``ftp``) to compressed
archives with the app template files, downloading and extracting them on the
fly.

For example, taking advantage of Github's feature to expose repositories as
For example, taking advantage of GitHub's feature to expose repositories as
zip files, you can use a URL like::

    django-admin startapp --template=https://github.com/githubuser/django-app-template/archive/master.zip myapp
@@ -1172,7 +1172,7 @@ Django will also accept URLs (``http``, ``https``, ``ftp``) to compressed
archives with the project template files, downloading and extracting them on the
fly.

For example, taking advantage of Github's feature to expose repositories as
For example, taking advantage of GitHub's feature to expose repositories as
zip files, you can use a URL like::

    django-admin startproject --template=https://github.com/githubuser/django-project-template/archive/master.zip myproject
+1 −1
Original line number Diff line number Diff line
@@ -726,7 +726,7 @@ The localflavor contrib app has been split into separate packages.
``django.contrib.localflavor`` itself will be removed in Django 1.6,
after an accelerated deprecation.

The new packages are available on Github. The core team cannot
The new packages are available on GitHub. The core team cannot
efficiently maintain these packages in the long term — it spans just a
dozen countries at this time; similar to translations, maintenance
will be handed over to interested members of the community.
Loading