Browse Source

Add a simple script for the first checkout.

Put it at the top, with an obvious name, so n00bs like me
don't keep messing up.

Change-Id: Ib266fb3297d387b4f600e3b9338ed37c2ea1219e
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Ronald G. Minnich 8 years ago
parent
commit
7cf0b433f2
1 changed files with 8 additions and 0 deletions
  1. 8 0
      RUN_ME_FIRST

+ 8 - 0
RUN_ME_FIRST

@@ -0,0 +1,8 @@
+#!/bin/bash
+curl -Lo .git/hooks/commit-msg http://review.gerrithub.io/tools/hooks/commit-msg
+chmod u+x .git/hooks/commit-msg
+git config remote.origin.push HEAD:refs/for/master
+git submodule init
+git submodule update
+
+