Movatterモバイル変換


[0]ホーム

URL:


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

Sign up
Appearance settings

Commitc074057

Browse files
stratusjerryByron
authored andcommitted
fix typos
1 parent56f18ac commitc074057

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎doc/source/tutorial.rst

Lines changed: 5 additions & 5 deletions
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 ofgits 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 ofgit'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 theywhere 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 theywere 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 quantitiessmall 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 quantitiesof 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 thanthe 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)

[8]ページ先頭

©2009-2025 Movatter.jp