aboutsummaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/changes.rst14
-rw-r--r--doc/source/intro.rst8
-rw-r--r--doc/source/tutorial.rst8
3 files changed, 26 insertions, 4 deletions
diff --git a/doc/source/changes.rst b/doc/source/changes.rst
index d9f44a86..e6d7b09b 100644
--- a/doc/source/changes.rst
+++ b/doc/source/changes.rst
@@ -2,6 +2,18 @@
Changelog
=========
+1.0.1 - Fixes
+=============
+
+* A list of all issues can be found `on github <https://github.com/gitpython-developers/GitPython/issues?q=milestone%3A%22v1.0.1+-+Fixes%22+is%3Aclosed>`_
+
+1.0.0 - Notes
+=============
+
+This version is equivalent to v0.3.7, but finally acknowledges that GitPython is stable and production ready.
+
+It follows the `semantic version scheme <http://semver.org>`_, and thus will not break its existing API unless it goes 2.0.
+
0.3.7 - Fixes
=============
* `IndexFile.add()` will now write the index without any extension data by default. However, you may override this behaviour with the new `write_extension_data` keyword argument.
@@ -353,7 +365,7 @@ General
a treeish git cowardly refuses to pick one and asks for the command to use
the unambiguous syntax where '--' seperates the treeish from the paths.
-* ``Repo.commits``, ``Repo.commits_between``, ``Reop.commits_since``,
+* ``Repo.commits``, ``Repo.commits_between``, ``Repo.commits_since``,
``Repo.commit_count``, ``Repo.commit``, ``Commit.count`` and
``Commit.find_all`` all now optionally take a path argument which
constrains the lookup by path. This changes the order of the positional
diff --git a/doc/source/intro.rst b/doc/source/intro.rst
index b767ccd7..78d40344 100644
--- a/doc/source/intro.rst
+++ b/doc/source/intro.rst
@@ -90,9 +90,11 @@ Finally verify the installation by running the `nose powered <http://code.google
$ nosetests
-Mailing List
-============
-http://groups.google.com/group/git-python
+Questions and Answers
+=====================
+Please use stackoverflow for questions, and don't forget to tag it with `gitpython` to assure the right people see the question in a timely manner.
+
+http://stackoverflow.com/questions/tagged/gitpython
Issue Tracker
=============
diff --git a/doc/source/tutorial.rst b/doc/source/tutorial.rst
index 632d2d0c..7cc296d8 100644
--- a/doc/source/tutorial.rst
+++ b/doc/source/tutorial.rst
@@ -343,6 +343,14 @@ This one sets a custom script to be executed in place of `ssh`, and can be used
with repo.git.custom_environment(GIT_SSH=ssh_executable):
repo.remotes.origin.fetch()
+Here's an example executable that can be used in place of the `ssh_executable` above::
+
+ #!/bin/sh
+ ID_RSA=/var/lib/openshift/5562b947ecdd5ce939000038/app-deployments/id_rsa
+ exec /usr/bin/ssh -o StrictHostKeyChecking=no -i $ID_RSA "$@"
+
+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.
+
You might also have a look at `Git.update_environment(...)` in case you want to setup a changed environment more permanently.
Submodule Handling