You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/changes.rst
+14-14
Original file line number
Diff line number
Diff line change
@@ -185,11 +185,11 @@ It follows the `semantic version scheme <http://semver.org>`_, and thus will not
185
185
186
186
0.3.3
187
187
=====
188
-
* When fetching, pulling or pushing, and an error occours, it will not be reported on stdout anymore. However, if there is a fatal error, it will still result in a GitCommandError to be thrown. This goes hand in hand with improved fetch result parsing.
188
+
* When fetching, pulling or pushing, and an error occurs, it will not be reported on stdout anymore. However, if there is a fatal error, it will still result in a GitCommandError to be thrown. This goes hand in hand with improved fetch result parsing.
189
189
* Code Cleanup (in preparation for python 3 support)
190
190
191
191
* Applied autopep8 and cleaned up code
192
-
* Using python logging module instead of print statments to signal certain kinds of errors
192
+
* Using python logging module instead of print statements to signal certain kinds of errors
193
193
194
194
0.3.2.1
195
195
=======
@@ -268,7 +268,7 @@ It follows the `semantic version scheme <http://semver.org>`_, and thus will not
268
268
* Head Type changes
269
269
270
270
* config_reader() & config_writer() methods added for access to head specific options.
271
-
* tracking_branch() & set_tracking_branch() methods addded for easy configuration of tracking branches.
271
+
* tracking_branch() & set_tracking_branch() methods added for easy configuration of tracking branches.
272
272
273
273
274
274
0.3.0 Beta 2
@@ -300,13 +300,13 @@ General
300
300
0.2 Beta 2
301
301
===========
302
302
* Commit objects now carry the 'encoding' information of their message. It wasn't parsed previously, and defaults to UTF-8
303
-
* Commit.create_from_tree now uses a pure-python implementation, mimicing git-commit-tree
303
+
* Commit.create_from_tree now uses a pure-python implementation, mimicking git-commit-tree
304
304
305
305
0.2
306
306
=====
307
307
General
308
308
-------
309
-
* file mode in Tree, Blob and Diff objects now is an int compatible to definintiions
309
+
* file mode in Tree, Blob and Diff objects now is an int compatible to definitions
310
310
in the stat module, allowing you to query whether individual user, group and other
311
311
read, write and execute bits are set.
312
312
* Adjusted class hierarchy to generally allow comparison and hash for Objects and Refs
@@ -320,12 +320,12 @@ General
320
320
may change without prior notice.
321
321
* Renamed all find_all methods to list_items - this method is part of the Iterable interface
322
322
that also provides a more efficients and more responsive iter_items method
323
-
* All dates, like authored_date and committer_date, are stored as seconds since epoc
323
+
* All dates, like authored_date and committer_date, are stored as seconds since epoch
324
324
to consume less memory - they can be converted using time.gmtime in a more suitable
325
325
presentation format if needed.
326
326
* Named method parameters changed on a wide scale to unify their use. Now git specific
327
327
terms are used everywhere, such as "Reference" ( ref ) and "Revision" ( rev ).
328
-
Prevously multiple terms where used making it harder to know which type was allowed
328
+
Previously multiple terms where used making it harder to know which type was allowed
329
329
or not.
330
330
* Unified diff interface to allow easy diffing between trees, trees and index, trees
331
331
and working tree, index and working tree, trees and index. This closely follows
@@ -355,7 +355,7 @@ Blob
355
355
GitCommand
356
356
-----------
357
357
* git.subcommand call scheme now prunes out None from the argument list, allowing
358
-
to be called more confortably as None can never be a valid to the git command
358
+
to be called more comfortably as None can never be a valid to the git command
359
359
if converted to a string.
360
360
* Renamed 'git_dir' attribute to 'working_dir' which is exactly how it is used
361
361
@@ -382,19 +382,19 @@ Diff
382
382
Diffing
383
383
-------
384
384
* Commit and Tree objects now support diffing natively with a common interface to
385
-
compare agains other Commits or Trees, against the working tree or against the index.
385
+
compare against other Commits or Trees, against the working tree or against the index.
386
386
387
387
Index
388
388
-----
389
389
* A new Index class allows to read and write index files directly, and to perform
390
390
simple two and three way merges based on an arbitrary index.
391
391
392
-
Referernces
392
+
References
393
393
------------
394
394
* References are object that point to a Commit
395
395
* SymbolicReference are a pointer to a Reference Object, which itself points to a specific
396
396
Commit
397
-
* They will dynmically retrieve their object at the time of query to assure the information
397
+
* They will dynamically retrieve their object at the time of query to assure the information
398
398
is actual. Recently objects would be cached, hence ref object not be safely kept
399
399
persistent.
400
400
@@ -403,7 +403,7 @@ Repo
403
403
* Moved blame method from Blob to repo as it appeared to belong there much more.
404
404
* active_branch method now returns a Head object instead of a string with the name
405
405
of the active branch.
406
-
* tree method now requires a Ref instance as input and defaults to the active_branche
406
+
* tree method now requires a Ref instance as input and defaults to the active_branch
407
407
instead of master
408
408
* is_dirty now takes additional arguments allowing fine-grained control about what is
409
409
considered dirty
@@ -479,7 +479,7 @@ General
479
479
* Removed ambiguity between paths and treeishs. When calling commands that
480
480
accept treeish and path arguments and there is a path with the same name as
481
481
a treeish git cowardly refuses to pick one and asks for the command to use
482
-
the unambiguous syntax where '--' seperates the treeish from the paths.
482
+
the unambiguous syntax where '--' separates the treeish from the paths.
0 commit comments