Repository: avro Updated Branches: refs/heads/master 51a260a27 -> fc3423402
AVRO-1841: Add clientside githooks to do basic commit validation. Add missing copyright header. Project: http://git-wip-us.apache.org/repos/asf/avro/repo Commit: http://git-wip-us.apache.org/repos/asf/avro/commit/fc342340 Tree: http://git-wip-us.apache.org/repos/asf/avro/tree/fc342340 Diff: http://git-wip-us.apache.org/repos/asf/avro/diff/fc342340 Branch: refs/heads/master Commit: fc34234028264bc15e779350204b78056d65810a Parents: 51a260a Author: Niels Basjes <[email protected]> Authored: Wed May 11 14:48:00 2016 +0200 Committer: Niels Basjes <[email protected]> Committed: Wed May 11 14:48:00 2016 +0200 ---------------------------------------------------------------------- share/githooks/commit-msg | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/avro/blob/fc342340/share/githooks/commit-msg ---------------------------------------------------------------------- diff --git a/share/githooks/commit-msg b/share/githooks/commit-msg index 07bbcc8..6a50adc 100644 --- a/share/githooks/commit-msg +++ b/share/githooks/commit-msg @@ -1,5 +1,20 @@ #!/bin/bash + +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 # +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + # Client side pre-commit hook to assist the committers to ensure the commit messages # follow the chosen convention.
