We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e32c8c commit fa2f2f1Copy full SHA for fa2f2f1
README.rst
@@ -1,3 +1,16 @@
1
+Importing into another repository with git-subtree
2
+==================================================
3
+
4
+To import the first time to a ``./css-parsing-tests`` sub-directory,
5
+run this from the top-level of a git repository::
6
7
+ git subtree add -P ./css-parsing-tests https://github.com/SimonSapin/css-parsing-tests.git master
8
9
+Later, to merge changes made in the upstream repository, run::
10
11
+ ./css-parsing-tests/update-subtree
12
13
14
Result representation
15
=====================
16
update-subtree
@@ -0,0 +1,2 @@
+#!/bin/sh
+git subtree pull -P $(dirname $0) https://github.com/SimonSapin/css-parsing-tests.git master
0 commit comments