summaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2012-01-05 13:31:17 +0100
committerSimon Hausmann <simon.hausmann@nokia.com>2012-01-05 13:37:26 +0100
commit66ed8d0f354d29f44135b817061e8e65f7d4f1c7 (patch)
treefb30629689933d986c4082cf1ae24859a112ddd0 /README
parentd874d9d7343797f3dd58a277c6e0488294b96a1c (diff)
Added missing README to explain initial update procedure
Change-Id: Iaf477848275524b7cee827c115bd0766013f3c5e Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
Diffstat (limited to 'README')
-rw-r--r--README20
1 files changed, 20 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..2672f6d
--- /dev/null
+++ b/README
@@ -0,0 +1,20 @@
+This repository contains a copy of V8 with additional changes needed for Qt.
+
+Please use [V8] as prefix to the subject of your commit messages when your change
+affects V8 itself and not the build system around it.
+
+Updating v8:
+
+1) Reset src/3rdparty/v8 to a V8 commit of your choice, for example:
+
+ git fetch https://github.com/v8/v8.git refs/tags/3.7.2
+ git rm --cached -r src/3rdparty/v8
+ git read-tree --prefix=src/3rdparty/v8 FETCH_HEAD
+ git checkout src/3rdparty/v8
+ git commit
+
+2) Cherry-pick our modifications from before:
+
+ gitk src/3rdparty/v8
+
+ and then cherry-pick the changes since the last v8 import.