Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c074057

Browse filesBrowse files
stratusjerryByron
authored andcommitted
fix typos
1 parent 56f18ac commit c074057
Copy full SHA for c074057

1 file changed

+5-5Lines changed: 5 additions & 5 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎doc/source/tutorial.rst‎

Copy file name to clipboardExpand all lines: doc/source/tutorial.rst
+5-5Lines changed: 5 additions & 5 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Archive the repository contents to a tar file.
6666
Advanced Repo Usage
6767
===================
6868

69-
And of course, there is much more you can do with this type, most of the following will be explained in greater detail in specific tutorials. Don't worry if you don't understand some of these examples right away, as they may require a thorough understanding of gits inner workings.
69+
And of course, there is much more you can do with this type, most of the following will be explained in greater detail in specific tutorials. Don't worry if you don't understand some of these examples right away, as they may require a thorough understanding of git's inner workings.
7070

7171
Query relevant repository paths ...
7272

@@ -363,7 +363,7 @@ Handling Remotes
363363
:start-after: # [25-test_references_and_objects]
364364
:end-before: # ![25-test_references_and_objects]
365365

366-
You can easily access configuration information for a remote by accessing options as if they where attributes. The modification of remote configuration is more explicit though.
366+
You can easily access configuration information for a remote by accessing options as if they were attributes. The modification of remote configuration is more explicit though.
367367

368368
.. literalinclude:: ../../test/test_docs.py
369369
:language: python
@@ -391,7 +391,7 @@ Here's an example executable that can be used in place of the `ssh_executable` a
391391
ID_RSA=/var/lib/openshift/5562b947ecdd5ce939000038/app-deployments/id_rsa
392392
exec /usr/bin/ssh -o StrictHostKeyChecking=no -i $ID_RSA "$@"
393393
394-
Please note that the script must be executable (i.e. `chomd +x script.sh`). `StrictHostKeyChecking=no` is used to avoid prompts asking to save the hosts key to `~/.ssh/known_hosts`, which happens in case you run this as daemon.
394+
Please note that the script must be executable (i.e. `chmod +x script.sh`). `StrictHostKeyChecking=no` is used to avoid prompts asking to save the hosts key to `~/.ssh/known_hosts`, which happens in case you run this as daemon.
395395

396396
You might also have a look at `Git.update_environment(...)` in case you want to setup a changed environment more permanently.
397397

@@ -509,14 +509,14 @@ The type of the database determines certain performance characteristics, such as
509509

510510
GitDB
511511
=====
512-
The GitDB is a pure-python implementation of the git object database. It is the default database to use in GitPython 0.3. Its uses less memory when handling huge files, but will be 2 to 5 times slower when extracting large quantities small of objects from densely packed repositories::
512+
The GitDB is a pure-python implementation of the git object database. It is the default database to use in GitPython 0.3. It uses less memory when handling huge files, but will be 2 to 5 times slower when extracting large quantities of small objects from densely packed repositories::
513513

514514
repo = Repo("path/to/repo", odbt=GitDB)
515515

516516

517517
GitCmdObjectDB
518518
==============
519-
The git command database uses persistent git-cat-file instances to read repository information. These operate very fast under all conditions, but will consume additional memory for the process itself. When extracting large files, memory usage will be much higher than the one of the ``GitDB``::
519+
The git command database uses persistent git-cat-file instances to read repository information. These operate very fast under all conditions, but will consume additional memory for the process itself. When extracting large files, memory usage will be much higher than ``GitDB``::
520520

521521
repo = Repo("path/to/repo", odbt=GitCmdObjectDB)
522522

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.