aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKacper Kowalik (Xarthisius) <xarthisius@gentoo.org>2012-05-28 17:56:56 +0200
committerKacper Kowalik (Xarthisius) <xarthisius@gentoo.org>2012-05-28 17:56:56 +0200
commit3ecc00d785bf39634249b29005a53521315d68f2 (patch)
tree8c60e3f1fde3684b1197226634dad7538bcfdf9e
parentInitial import, add layout.conf and repo_name (diff)
downloadpython-3ecc00d785bf39634249b29005a53521315d68f2.tar.gz
python-3ecc00d785bf39634249b29005a53521315d68f2.tar.bz2
python-3ecc00d785bf39634249b29005a53521315d68f2.zip
Add stubs for README.md, README.html will be automatically generated via post-commit hook
-rw-r--r--README.html12
-rw-r--r--README.md13
2 files changed, 25 insertions, 0 deletions
diff --git a/README.html b/README.html
new file mode 100644
index 0000000..634aa56
--- /dev/null
+++ b/README.html
@@ -0,0 +1,12 @@
+<h3>Configuring your <em>git clone</em> localy</h3>
+<p>Make sure that your <em>.git/config</em> has the following settings:</p>
+<pre><code>[remote "origin"]
+ fetch = +refs/heads/*:refs/remotes/origin/*
+ url = git+ssh://git@git.overlays.gentoo.org/proj/python.git
+ pushurl = git@github.com:gentoo/python.git
+ pushurl = git+ssh://git@git.overlays.gentoo.org/proj/python.git
+[remote "github"]
+ url = git@github.com:gentoo/python.git
+ fetch = +refs/heads/*:refs/remotes/github/*
+</code></pre>
+<p>You can pull/push to both repos at once using <em>--all</em> switch.</p> \ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..163fdac
--- /dev/null
+++ b/README.md
@@ -0,0 +1,13 @@
+### Configuring your _git clone_ localy
+Make sure that your _.git/config_ has the following settings:
+
+ [remote "origin"]
+ fetch = +refs/heads/*:refs/remotes/origin/*
+ url = git+ssh://git@git.overlays.gentoo.org/proj/python.git
+ pushurl = git@github.com:gentoo/python.git
+ pushurl = git+ssh://git@git.overlays.gentoo.org/proj/python.git
+ [remote "github"]
+ url = git@github.com:gentoo/python.git
+ fetch = +refs/heads/*:refs/remotes/github/*
+
+You can pull/push to both repos at once using _--all_ switch.