Repository: mesos Updated Branches: refs/heads/master 33befcb17 -> 560b4860f
Added a reviewboard config to make ./support/post-reviews easier to use. Review: https://reviews.apache.org/r/28298 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/560b4860 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/560b4860 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/560b4860 Branch: refs/heads/master Commit: 560b4860ffa28e6f90c0ce67ca0722c7cb98c242 Parents: 33befcb Author: Cody Maloney <[email protected]> Authored: Mon Nov 24 11:26:30 2014 -0800 Committer: Niklas Q. Nielsen <[email protected]> Committed: Mon Nov 24 11:26:31 2014 -0800 ---------------------------------------------------------------------- .gitignore-template | 1 + bootstrap | 4 ++++ support/reviewboardrc | 3 +++ 3 files changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/560b4860/.gitignore-template ---------------------------------------------------------------------- diff --git a/.gitignore-template b/.gitignore-template index 3e2b11c..1a8e2a8 100644 --- a/.gitignore-template +++ b/.gitignore-template @@ -2,6 +2,7 @@ .gitignore # Files created by ./bootstrap. +.reviewboardrc Makefile.in aclocal.m4 ar-lib http://git-wip-us.apache.org/repos/asf/mesos/blob/560b4860/bootstrap ---------------------------------------------------------------------- diff --git a/bootstrap b/bootstrap index a77c098..658db1a 100755 --- a/bootstrap +++ b/bootstrap @@ -19,6 +19,10 @@ if test ! -e .gitignore; then ln -s .gitignore-template .gitignore fi +if test ! -e .reviewboardrc; then + ln -s support/reviewboardrc .reviewboardrc +fi + if [ -n "$AUTOMAKE" ] || [ -n "$ACLOCAL" ] ; then if [ -z "$ACLOCAL" ] || [ -z "$AUTOMAKE" ] ; then _present="AUTOMAKE" http://git-wip-us.apache.org/repos/asf/mesos/blob/560b4860/support/reviewboardrc ---------------------------------------------------------------------- diff --git a/support/reviewboardrc b/support/reviewboardrc new file mode 100644 index 0000000..20dbf10 --- /dev/null +++ b/support/reviewboardrc @@ -0,0 +1,3 @@ +REVIEWBOARD_URL = "https://reviews.apache.org/" +TARGET_GROUPS = "mesos" +REPOSITORY = "git://git.apache.org/mesos.git"
