Added support for RC / Milestone

fixes #8
This commit is contained in:
Marcin Grzejszczak
2017-03-16 14:41:20 +01:00
parent e2d430ab74
commit 01e8f2401c
280 changed files with 725 additions and 105 deletions

View File

@@ -56,9 +56,13 @@ public class Releaser {
public void rollbackReleaseVersion(File project, ProjectVersion originalVersion, ProjectVersion changedVersion) {
this.projectGitUpdater.revertChangesIfApplicable(project, changedVersion);
this.projectBuilder.bumpVersions(originalVersion.bumpedVersion());
this.projectGitUpdater.commitAfterBumpingVersions(project, originalVersion);
log.info("\nSuccessfully reverted the commit and bumped snapshot versions");
if (changedVersion.isRelease()) {
this.projectBuilder.bumpVersions(originalVersion.bumpedVersion());
this.projectGitUpdater.commitAfterBumpingVersions(project, originalVersion);
log.info("\nSuccessfully reverted the commit and bumped snapshot versions");
} else {
log.info("\nSuccessfully reverted the commit and came back to snapshot versions");
}
}
public void pushCurrentBranch(File project) {

View File

@@ -49,6 +49,10 @@ public class ProjectVersion {
return this.version.contains("SNAPSHOT");
}
public boolean isRelease() {
return this.version.contains("RELEASE");
}
@Override public String toString() {
return this.version;
}

View File

@@ -89,6 +89,27 @@ public class ProjectVersionTests {
then(projectVersion(version).isSnapshot()).isFalse();
}
@Test
public void should_return_false_for_milestone_version() {
String version = "1.0.1.M1";
then(projectVersion(version).isRelease()).isFalse();
}
@Test
public void should_return_false_for_rc_version() {
String version = "1.0.1.RC1";
then(projectVersion(version).isRelease()).isFalse();
}
@Test
public void should_return_true_for_release_versions() {
String version = "1.0.1.RELEASE";
then(projectVersion(version).isRelease()).isTrue();
}
private ProjectVersion projectVersion(String version) {
return new ProjectVersion("foo", version);
}

View File

@@ -51,13 +51,13 @@ public class AcceptanceTests {
pomParentVersionIsEqualTo(origin, "1.2.0.BUILD-SNAPSHOT");
File project = GitTestUtils.clonedProject(this.tmp.newFolder(), tmpFile("spring-cloud-consul"));
GitTestUtils.setOriginOnProjectToTmp(origin, project);
SpringReleaser releaser = releaser(project);
SpringReleaser releaser = releaser(project, "vCamden.SR5", "1.1.2.RELEASE");
releaser.release();
Iterable<RevCommit> commits = listOfCommits(project);
Iterator<RevCommit> iterator = commits.iterator();
tagIsPresentInOrigin(origin);
tagIsPresentInOrigin(origin, "v1.1.2.RELEASE");
commitIsPresent(iterator, "Bumping versions to 1.2.1.BUILD-SNAPSHOT after release");
commitIsPresent(iterator, "Going back to snapshots");
commitIsPresent(iterator, "Update SNAPSHOT to 1.1.2.RELEASE");
@@ -66,6 +66,28 @@ public class AcceptanceTests {
then(this.gitUpdater.executed).isTrue();
}
@Test
public void should_perform_a_release_of_consul_rc1() throws Exception {
File origin = GitTestUtils.clonedProject(this.tmp.newFolder(), this.springCloudConsulProject);
pomVersionIsEqualTo(origin, "1.2.0.BUILD-SNAPSHOT");
pomParentVersionIsEqualTo(origin, "1.2.0.BUILD-SNAPSHOT");
File project = GitTestUtils.clonedProject(this.tmp.newFolder(), tmpFile("spring-cloud-consul"));
GitTestUtils.setOriginOnProjectToTmp(origin, project);
SpringReleaser releaser = releaser(project, "Dalston.RC1", "1.2.0.RC1");
releaser.release();
Iterable<RevCommit> commits = listOfCommits(project);
tagIsPresentInOrigin(origin, "v1.2.0.RC1");
commitIsNotPresent(commits, "Bumping versions to 1.2.1.BUILD-SNAPSHOT after release");
Iterator<RevCommit> iterator = listOfCommits(project).iterator();
commitIsPresent(iterator, "Going back to snapshots");
commitIsPresent(iterator, "Update SNAPSHOT to 1.2.0.RC1");
pomVersionIsEqualTo(project, "1.2.0.BUILD-SNAPSHOT");
pomParentVersionIsEqualTo(project, "1.2.0.BUILD-SNAPSHOT");
then(this.gitUpdater.executed).isTrue();
}
private Iterable<RevCommit> listOfCommits(File project) throws GitAPIException {
return GitTestUtils.openGitProject(project).log().call();
}
@@ -85,19 +107,42 @@ public class AcceptanceTests {
then(commit.getShortMessage()).isEqualTo(expected);
}
private void tagIsPresentInOrigin(File origin) throws GitAPIException {
private void commitIsNotPresent(Iterable<RevCommit> commits,
String expected) {
for (RevCommit commit : commits) {
then(commit.getShortMessage()).isNotEqualTo(expected);
}
}
private void tagIsPresentInOrigin(File origin, String expectedTag) throws GitAPIException {
BDDAssertions
.then(GitTestUtils.openGitProject(origin).tagList().call().iterator().next().getName()).endsWith("v1.1.2.RELEASE");
.then(GitTestUtils.openGitProject(origin).tagList()
.call().iterator().next().getName()).endsWith(expectedTag);
}
private Model pom(File dir) {
return this.testPomReader.readPom(new File(dir, "pom.xml"));
}
private ReleaserProperties releaserProperties(File project) throws URISyntaxException {
private SpringReleaser releaser(File projectFile, String branch, String expectedVersion) throws Exception {
ReleaserProperties properties = releaserProperties(projectFile, branch);
ProjectPomUpdater pomUpdater = new ProjectPomUpdater(properties);
ProjectBuilder projectBuilder = new ProjectBuilder(properties, pomUpdater);
TestProjectGitUpdater gitUpdater = new TestProjectGitUpdater(properties,
expectedVersion);
Releaser releaser = new Releaser(pomUpdater, projectBuilder, gitUpdater);
this.gitUpdater = gitUpdater;
return new SpringReleaser(releaser, properties) {
@Override boolean skipStep() {
return false;
}
};
}
private ReleaserProperties releaserProperties(File project, String branch) throws URISyntaxException {
ReleaserProperties releaserProperties = new ReleaserProperties();
releaserProperties.getGit().setSpringCloudReleaseGitUrl(file("/projects/spring-cloud-release/").toURI().getPath());
releaserProperties.getPom().setBranch("vCamden.SR5");
releaserProperties.getPom().setBranch(branch);
releaserProperties.setWorkingDir(project.getPath());
releaserProperties.getMaven().setBuildCommand("touch build");
releaserProperties.getMaven().setDeployCommand("touch deploy");
@@ -105,30 +150,20 @@ public class AcceptanceTests {
return releaserProperties;
}
private SpringReleaser releaser(File projectFile) throws Exception {
ReleaserProperties properties = releaserProperties(projectFile);
ProjectPomUpdater pomUpdater = new ProjectPomUpdater(properties);
ProjectBuilder projectBuilder = new ProjectBuilder(properties, pomUpdater);
TestProjectGitUpdater gitUpdater = new TestProjectGitUpdater(properties);
this.gitUpdater = gitUpdater;
return new SpringReleaser(new Releaser(pomUpdater, projectBuilder, gitUpdater), properties) {
@Override boolean skipStep() {
return false;
}
};
}
class TestProjectGitUpdater extends ProjectGitUpdater {
boolean executed = false;
final String expectedVersion;
public TestProjectGitUpdater(ReleaserProperties properties) {
public TestProjectGitUpdater(ReleaserProperties properties,
String expectedVersion) {
super(properties);
this.expectedVersion = expectedVersion;
}
@Override public void closeMilestone(ProjectVersion releaseVersion) {
then(releaseVersion.projectName).isEqualTo("spring-cloud-consul");
then(releaseVersion.version).isEqualTo("1.1.2.RELEASE");
then(releaseVersion.version).isEqualTo(this.expectedVersion);
this.executed = true;
}
}

View File

@@ -0,0 +1 @@
Added build + projects retrieval

View File

@@ -1,14 +1 @@
320597b84bb0312c15228c4d42f46c189b86ed90 branch 'master' of github.com:spring-cloud/spring-cloud-release
fb730db9b3999e45c350015c6cf83be35910a159 not-for-merge branch '1.0.0.M2' of github.com:spring-cloud/spring-cloud-release
474b03693496665434ab2615d6500bbb0b575a5b not-for-merge branch '1.0.0.M3' of github.com:spring-cloud/spring-cloud-release
7fdc875cb2b1620e8bc87ef8a27da2858eef7cd1 not-for-merge branch '1.0.0.RC1' of github.com:spring-cloud/spring-cloud-release
75d0bc7cc0995ac76b6cfad962ea54d05262a664 not-for-merge branch '1.0.0.RELEASE' of github.com:spring-cloud/spring-cloud-release
8e8a2d41b4beb8985919bc5a2bca2aa66374bdbb not-for-merge branch '1.0.1.RELEASE' of github.com:spring-cloud/spring-cloud-release
59414747ee8c095753a0b8c5641b328f80d47d33 not-for-merge branch '1.0.2.RELEASE' of github.com:spring-cloud/spring-cloud-release
73ec179d7ce96d5a98c2acd5697cd81c49dfd7d5 not-for-merge branch '1.0.x' of github.com:spring-cloud/spring-cloud-release
08c95747e807212c605d758bbb360f6d671b2932 not-for-merge branch 'Angel.SR3' of github.com:spring-cloud/spring-cloud-release
6882449721e48f955b102606ae3fc2535ebbd4cb not-for-merge branch 'Brixton' of github.com:spring-cloud/spring-cloud-release
7745834b138ffe1f647b14dd3c7d4d71eee8aac3 not-for-merge branch 'Brixton.M1' of github.com:spring-cloud/spring-cloud-release
f2036f13515dc6aa997cc15827919acec634eaae not-for-merge branch 'Brixton.M2' of github.com:spring-cloud/spring-cloud-release
928e0d8389dcee60189d6c0eb737ab9376e87f54 not-for-merge branch 'Camden.RC1' of github.com:spring-cloud/spring-cloud-release
b566ab3bea0506bccaa10f83784a41673606d6ee not-for-merge branch 'Camden.x' of github.com:spring-cloud/spring-cloud-release
0ccd2833e149e9b8a7974ecf74a5e9e172322ab9 branch 'master' of github.com:spring-cloud/spring-cloud-release

View File

@@ -1 +1 @@
32ebcd2c317339400d65ad43999d4e5ddc05bd30
320597b84bb0312c15228c4d42f46c189b86ed90

View File

@@ -1,7 +1,12 @@
[core]
repositoryformatversion = 0
filemode = true
bare = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
[branch "master"]
[branch "Camden.x"]
[branch "Brixton"]
[branch "Dalston.RC1"]

View File

@@ -0,0 +1,15 @@
#!/bin/sh
#
# An example hook script to check the commit log message taken by
# applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit. The hook is
# allowed to edit the commit message file.
#
# To enable this hook, rename this file to "applypatch-msg".
. git-sh-setup
commitmsg="$(git rev-parse --git-path hooks/commit-msg)"
test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"}
:

View File

@@ -0,0 +1,24 @@
#!/bin/sh
#
# An example hook script to check the commit log message.
# Called by "git commit" with one argument, the name of the file
# that has the commit message. The hook should exit with non-zero
# status after issuing an appropriate message if it wants to stop the
# commit. The hook is allowed to edit the commit message file.
#
# To enable this hook, rename this file to "commit-msg".
# Uncomment the below to add a Signed-off-by line to the message.
# Doing this in a hook is a bad idea in general, but the prepare-commit-msg
# hook is more suited to it.
#
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
# This example catches duplicate Signed-off-by lines.
test "" = "$(grep '^Signed-off-by: ' "$1" |
sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || {
echo >&2 Duplicate Signed-off-by lines.
exit 1
}

View File

@@ -0,0 +1,8 @@
#!/bin/sh
#
# An example hook script to prepare a packed repository for use over
# dumb transports.
#
# To enable this hook, rename this file to "post-update".
exec git update-server-info

View File

@@ -0,0 +1,14 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed
# by applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-applypatch".
. git-sh-setup
precommit="$(git rev-parse --git-path hooks/pre-commit)"
test -x "$precommit" && exec "$precommit" ${1+"$@"}
:

View File

@@ -0,0 +1,49 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed.
# Called by "git commit" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-commit".
if git rev-parse --verify HEAD >/dev/null 2>&1
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=4b825dc642cb6eb9a060e54bf8d69288fbee4904
fi
# If you want to allow non-ASCII filenames set this variable to true.
allownonascii=$(git config --bool hooks.allownonascii)
# Redirect output to stderr.
exec 1>&2
# Cross platform projects tend to avoid non-ASCII filenames; prevent
# them from being added to the repository. We exploit the fact that the
# printable range starts at the space character and ends with tilde.
if [ "$allownonascii" != "true" ] &&
# Note that the use of brackets around a tr range is ok here, (it's
# even required, for portability to Solaris 10's /usr/bin/tr), since
# the square bracket bytes happen to fall in the designated range.
test $(git diff --cached --name-only --diff-filter=A -z $against |
LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0
then
cat <<\EOF
Error: Attempt to add a non-ASCII file name.
This can cause problems if you want to work with people on other platforms.
To be portable it is advisable to rename the file.
If you know what you are doing you can disable this check using:
git config hooks.allownonascii true
EOF
exit 1
fi
# If there are whitespace errors, print the offending file names and fail.
exec git diff-index --check --cached $against --

View File

@@ -0,0 +1,53 @@
#!/bin/sh
# An example hook script to verify what is about to be pushed. Called by "git
# push" after it has checked the remote status, but before anything has been
# pushed. If this script exits with a non-zero status nothing will be pushed.
#
# This hook is called with the following parameters:
#
# $1 -- Name of the remote to which the push is being done
# $2 -- URL to which the push is being done
#
# If pushing without using a named remote those arguments will be equal.
#
# Information about the commits which are being pushed is supplied as lines to
# the standard input in the form:
#
# <local ref> <local sha1> <remote ref> <remote sha1>
#
# This sample shows how to prevent push of commits where the log message starts
# with "WIP" (work in progress).
remote="$1"
url="$2"
z40=0000000000000000000000000000000000000000
while read local_ref local_sha remote_ref remote_sha
do
if [ "$local_sha" = $z40 ]
then
# Handle delete
:
else
if [ "$remote_sha" = $z40 ]
then
# New branch, examine all commits
range="$local_sha"
else
# Update to existing branch, examine new commits
range="$remote_sha..$local_sha"
fi
# Check for WIP commit
commit=`git rev-list -n 1 --grep '^WIP' "$range"`
if [ -n "$commit" ]
then
echo >&2 "Found WIP commit in $local_ref, not pushing"
exit 1
fi
fi
done
exit 0

View File

@@ -0,0 +1,169 @@
#!/bin/sh
#
# Copyright (c) 2006, 2008 Junio C Hamano
#
# The "pre-rebase" hook is run just before "git rebase" starts doing
# its job, and can prevent the command from running by exiting with
# non-zero status.
#
# The hook is called with the following parameters:
#
# $1 -- the upstream the series was forked from.
# $2 -- the branch being rebased (or empty when rebasing the current branch).
#
# This sample shows how to prevent topic branches that are already
# merged to 'next' branch from getting rebased, because allowing it
# would result in rebasing already published history.
publish=next
basebranch="$1"
if test "$#" = 2
then
topic="refs/heads/$2"
else
topic=`git symbolic-ref HEAD` ||
exit 0 ;# we do not interrupt rebasing detached HEAD
fi
case "$topic" in
refs/heads/??/*)
;;
*)
exit 0 ;# we do not interrupt others.
;;
esac
# Now we are dealing with a topic branch being rebased
# on top of master. Is it OK to rebase it?
# Does the topic really exist?
git show-ref -q "$topic" || {
echo >&2 "No such branch $topic"
exit 1
}
# Is topic fully merged to master?
not_in_master=`git rev-list --pretty=oneline ^master "$topic"`
if test -z "$not_in_master"
then
echo >&2 "$topic is fully merged to master; better remove it."
exit 1 ;# we could allow it, but there is no point.
fi
# Is topic ever merged to next? If so you should not be rebasing it.
only_next_1=`git rev-list ^master "^$topic" ${publish} | sort`
only_next_2=`git rev-list ^master ${publish} | sort`
if test "$only_next_1" = "$only_next_2"
then
not_in_topic=`git rev-list "^$topic" master`
if test -z "$not_in_topic"
then
echo >&2 "$topic is already up-to-date with master"
exit 1 ;# we could allow it, but there is no point.
else
exit 0
fi
else
not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"`
/usr/bin/perl -e '
my $topic = $ARGV[0];
my $msg = "* $topic has commits already merged to public branch:\n";
my (%not_in_next) = map {
/^([0-9a-f]+) /;
($1 => 1);
} split(/\n/, $ARGV[1]);
for my $elem (map {
/^([0-9a-f]+) (.*)$/;
[$1 => $2];
} split(/\n/, $ARGV[2])) {
if (!exists $not_in_next{$elem->[0]}) {
if ($msg) {
print STDERR $msg;
undef $msg;
}
print STDERR " $elem->[1]\n";
}
}
' "$topic" "$not_in_next" "$not_in_master"
exit 1
fi
exit 0
################################################################
This sample hook safeguards topic branches that have been
published from being rewound.
The workflow assumed here is:
* Once a topic branch forks from "master", "master" is never
merged into it again (either directly or indirectly).
* Once a topic branch is fully cooked and merged into "master",
it is deleted. If you need to build on top of it to correct
earlier mistakes, a new topic branch is created by forking at
the tip of the "master". This is not strictly necessary, but
it makes it easier to keep your history simple.
* Whenever you need to test or publish your changes to topic
branches, merge them into "next" branch.
The script, being an example, hardcodes the publish branch name
to be "next", but it is trivial to make it configurable via
$GIT_DIR/config mechanism.
With this workflow, you would want to know:
(1) ... if a topic branch has ever been merged to "next". Young
topic branches can have stupid mistakes you would rather
clean up before publishing, and things that have not been
merged into other branches can be easily rebased without
affecting other people. But once it is published, you would
not want to rewind it.
(2) ... if a topic branch has been fully merged to "master".
Then you can delete it. More importantly, you should not
build on top of it -- other people may already want to
change things related to the topic as patches against your
"master", so if you need further changes, it is better to
fork the topic (perhaps with the same name) afresh from the
tip of "master".
Let's look at this example:
o---o---o---o---o---o---o---o---o---o "next"
/ / / /
/ a---a---b A / /
/ / / /
/ / c---c---c---c B /
/ / / \ /
/ / / b---b C \ /
/ / / / \ /
---o---o---o---o---o---o---o---o---o---o---o "master"
A, B and C are topic branches.
* A has one fix since it was merged up to "next".
* B has finished. It has been fully merged up to "master" and "next",
and is ready to be deleted.
* C has not merged to "next" at all.
We would want to allow C to be rebased, refuse A, and encourage
B to be deleted.
To compute (1):
git rev-list ^master ^topic next
git rev-list ^master next
if these match, topic has not merged in next at all.
To compute (2):
git rev-list master..topic
if this is empty, it is fully merged to "master".

View File

@@ -0,0 +1,36 @@
#!/bin/sh
#
# An example hook script to prepare the commit log message.
# Called by "git commit" with the name of the file that has the
# commit message, followed by the description of the commit
# message's source. The hook's purpose is to edit the commit
# message file. If the hook fails with a non-zero status,
# the commit is aborted.
#
# To enable this hook, rename this file to "prepare-commit-msg".
# This hook includes three examples. The first comments out the
# "Conflicts:" part of a merge commit.
#
# The second includes the output of "git diff --name-status -r"
# into the message, just before the "git status" output. It is
# commented because it doesn't cope with --amend or with squashed
# commits.
#
# The third example adds a Signed-off-by line to the message, that can
# still be edited. This is rarely a good idea.
case "$2,$3" in
merge,)
/usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;;
# ,|template,)
# /usr/bin/perl -i.bak -pe '
# print "\n" . `git diff --cached --name-status -r`
# if /^#/ && $first++ == 0' "$1" ;;
*) ;;
esac
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"

View File

@@ -0,0 +1,128 @@
#!/bin/sh
#
# An example hook script to block unannotated tags from entering.
# Called by "git receive-pack" with arguments: refname sha1-old sha1-new
#
# To enable this hook, rename this file to "update".
#
# Config
# ------
# hooks.allowunannotated
# This boolean sets whether unannotated tags will be allowed into the
# repository. By default they won't be.
# hooks.allowdeletetag
# This boolean sets whether deleting tags will be allowed in the
# repository. By default they won't be.
# hooks.allowmodifytag
# This boolean sets whether a tag may be modified after creation. By default
# it won't be.
# hooks.allowdeletebranch
# This boolean sets whether deleting branches will be allowed in the
# repository. By default they won't be.
# hooks.denycreatebranch
# This boolean sets whether remotely creating branches will be denied
# in the repository. By default this is allowed.
#
# --- Command line
refname="$1"
oldrev="$2"
newrev="$3"
# --- Safety check
if [ -z "$GIT_DIR" ]; then
echo "Don't run this script from the command line." >&2
echo " (if you want, you could supply GIT_DIR then run" >&2
echo " $0 <ref> <oldrev> <newrev>)" >&2
exit 1
fi
if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then
echo "usage: $0 <ref> <oldrev> <newrev>" >&2
exit 1
fi
# --- Config
allowunannotated=$(git config --bool hooks.allowunannotated)
allowdeletebranch=$(git config --bool hooks.allowdeletebranch)
denycreatebranch=$(git config --bool hooks.denycreatebranch)
allowdeletetag=$(git config --bool hooks.allowdeletetag)
allowmodifytag=$(git config --bool hooks.allowmodifytag)
# check for no description
projectdesc=$(sed -e '1q' "$GIT_DIR/description")
case "$projectdesc" in
"Unnamed repository"* | "")
echo "*** Project description file hasn't been set" >&2
exit 1
;;
esac
# --- Check types
# if $newrev is 0000...0000, it's a commit to delete a ref.
zero="0000000000000000000000000000000000000000"
if [ "$newrev" = "$zero" ]; then
newrev_type=delete
else
newrev_type=$(git cat-file -t $newrev)
fi
case "$refname","$newrev_type" in
refs/tags/*,commit)
# un-annotated tag
short_refname=${refname##refs/tags/}
if [ "$allowunannotated" != "true" ]; then
echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2
echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2
exit 1
fi
;;
refs/tags/*,delete)
# delete tag
if [ "$allowdeletetag" != "true" ]; then
echo "*** Deleting a tag is not allowed in this repository" >&2
exit 1
fi
;;
refs/tags/*,tag)
# annotated tag
if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1
then
echo "*** Tag '$refname' already exists." >&2
echo "*** Modifying a tag is not allowed in this repository." >&2
exit 1
fi
;;
refs/heads/*,commit)
# branch
if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then
echo "*** Creating a branch is not allowed in this repository" >&2
exit 1
fi
;;
refs/heads/*,delete)
# delete branch
if [ "$allowdeletebranch" != "true" ]; then
echo "*** Deleting a branch is not allowed in this repository" >&2
exit 1
fi
;;
refs/remotes/*,commit)
# tracking branch
;;
refs/remotes/*,delete)
# delete tracking branch
if [ "$allowdeletebranch" != "true" ]; then
echo "*** Deleting a tracking branch is not allowed in this repository" >&2
exit 1
fi
;;
*)
# Anything else (is there anything else?)
echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2
exit 1
;;
esac
# --- Finished
exit 0

View File

@@ -0,0 +1,6 @@
# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~

View File

@@ -1,12 +1,31 @@
0000000000000000000000000000000000000000 e1248f716b5656af04ded489b481db45ad3dfc8f Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1473364042 +0200 clone: from git@github.com:spring-cloud/spring-cloud-release.git
e1248f716b5656af04ded489b481db45ad3dfc8f 1ab978f42299811efa4953b98a923699c95f6776 Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1474826109 +0200 checkout: moving from master to vCamden.RELEASE
1ab978f42299811efa4953b98a923699c95f6776 e1248f716b5656af04ded489b481db45ad3dfc8f Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1474826610 +0200 checkout: moving from 1ab978f42299811efa4953b98a923699c95f6776 to master
e1248f716b5656af04ded489b481db45ad3dfc8f b05cdc5318cbc5c049a391fe67ac4a8cf763689d Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486373153 +0100 checkout: moving from master to Camden.x
b05cdc5318cbc5c049a391fe67ac4a8cf763689d 25af4f2162cdf0642c78ea8e63c1744158b6ad1b Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486377649 +0100 commit: Bumping versions before release
25af4f2162cdf0642c78ea8e63c1744158b6ad1b a29f784a15fc3d039d4dfec619ebcddaf0ef8b8a Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486378936 +0100 revert: Going back to snapshots
a29f784a15fc3d039d4dfec619ebcddaf0ef8b8a b566ab3bea0506bccaa10f83784a41673606d6ee Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486379057 +0100 commit (amend): Going back to snapshots
b566ab3bea0506bccaa10f83784a41673606d6ee e1248f716b5656af04ded489b481db45ad3dfc8f Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486379087 +0100 checkout: moving from Camden.x to master
e1248f716b5656af04ded489b481db45ad3dfc8f 32ebcd2c317339400d65ad43999d4e5ddc05bd30 Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486379095 +0100 pull --rebase origin master: checkout 32ebcd2c317339400d65ad43999d4e5ddc05bd30
32ebcd2c317339400d65ad43999d4e5ddc05bd30 32ebcd2c317339400d65ad43999d4e5ddc05bd30 Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486379095 +0100 rebase finished: returning to refs/heads/master
32ebcd2c317339400d65ad43999d4e5ddc05bd30 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1488827673 +0100 pull --rebase origin master: checkout 320597b84bb0312c15228c4d42f46c189b86ed90
320597b84bb0312c15228c4d42f46c189b86ed90 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1488827673 +0100 rebase finished: returning to refs/heads/master
0000000000000000000000000000000000000000 3f8925dcec6d590f62429edea458812128c1c57f Marcin Grzejszczak <marcin@grzejszczak.pl> 1481127445 +0100 clone: from git@github.com:spring-cloud/spring-cloud-release.git
3f8925dcec6d590f62429edea458812128c1c57f c8bb5894e1e198e5fe646b97bcbb75fe4746d30b Marcin Grzejszczak <marcin@grzejszczak.pl> 1481127532 +0100 checkout: moving from master to Camden.x
c8bb5894e1e198e5fe646b97bcbb75fe4746d30b 3f8925dcec6d590f62429edea458812128c1c57f Marcin Grzejszczak <marcin@grzejszczak.pl> 1481128710 +0100 checkout: moving from Camden.x to master
3f8925dcec6d590f62429edea458812128c1c57f 821555cad8a6132fd045755733e6a0ec6d0957f3 Marcin Grzejszczak <marcin@grzejszczak.pl> 1481128769 +0100 commit: Bumping contract for Dalston
821555cad8a6132fd045755733e6a0ec6d0957f3 6882449721e48f955b102606ae3fc2535ebbd4cb Marcin Grzejszczak <marcin@grzejszczak.pl> 1481883884 +0100 checkout: moving from master to Brixton
6882449721e48f955b102606ae3fc2535ebbd4cb 821555cad8a6132fd045755733e6a0ec6d0957f3 Marcin Grzejszczak <marcin@grzejszczak.pl> 1482244810 +0100 checkout: moving from Brixton to master
821555cad8a6132fd045755733e6a0ec6d0957f3 6882449721e48f955b102606ae3fc2535ebbd4cb Marcin Grzejszczak <marcin@grzejszczak.pl> 1482244826 +0100 checkout: moving from master to Brixton
6882449721e48f955b102606ae3fc2535ebbd4cb c8bb5894e1e198e5fe646b97bcbb75fe4746d30b Marcin Grzejszczak <marcin@grzejszczak.pl> 1482244860 +0100 checkout: moving from Brixton to Camden.x
c8bb5894e1e198e5fe646b97bcbb75fe4746d30b 821555cad8a6132fd045755733e6a0ec6d0957f3 Marcin Grzejszczak <marcin@grzejszczak.pl> 1482244875 +0100 checkout: moving from Camden.x to master
821555cad8a6132fd045755733e6a0ec6d0957f3 c8bb5894e1e198e5fe646b97bcbb75fe4746d30b Marcin Grzejszczak <marcin@grzejszczak.pl> 1484220811 +0100 checkout: moving from master to Camden.x
c8bb5894e1e198e5fe646b97bcbb75fe4746d30b 821555cad8a6132fd045755733e6a0ec6d0957f3 Marcin Grzejszczak <marcin@grzejszczak.pl> 1488793315 +0100 reset: moving to origin/master
821555cad8a6132fd045755733e6a0ec6d0957f3 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1488793321 +0100 pull --rebase origin master: checkout 320597b84bb0312c15228c4d42f46c189b86ed90
320597b84bb0312c15228c4d42f46c189b86ed90 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1488793321 +0100 rebase finished: returning to refs/heads/Camden.x
320597b84bb0312c15228c4d42f46c189b86ed90 dd05da06f317a22d8f86911830737b57ca3add5c Marcin Grzejszczak <marcin@grzejszczak.pl> 1488800938 +0100 checkout: moving from Camden.x to vCamden.SR3
dd05da06f317a22d8f86911830737b57ca3add5c 821555cad8a6132fd045755733e6a0ec6d0957f3 Marcin Grzejszczak <marcin@grzejszczak.pl> 1488809148 +0100 checkout: moving from dd05da06f317a22d8f86911830737b57ca3add5c to master
821555cad8a6132fd045755733e6a0ec6d0957f3 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1488809155 +0100 pull --rebase origin master: checkout 320597b84bb0312c15228c4d42f46c189b86ed90
320597b84bb0312c15228c4d42f46c189b86ed90 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1488809155 +0100 rebase finished: returning to refs/heads/master
320597b84bb0312c15228c4d42f46c189b86ed90 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1488899990 +0100 checkout: moving from master to Camden.x
320597b84bb0312c15228c4d42f46c189b86ed90 b566ab3bea0506bccaa10f83784a41673606d6ee Marcin Grzejszczak <marcin@grzejszczak.pl> 1488899998 +0100 pull --rebase origin Camden.x: checkout b566ab3bea0506bccaa10f83784a41673606d6ee
b566ab3bea0506bccaa10f83784a41673606d6ee 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489662682 +0100 reset: moving to origin/master
320597b84bb0312c15228c4d42f46c189b86ed90 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489662684 +0100 checkout: moving from 320597b84bb0312c15228c4d42f46c189b86ed90 to master
320597b84bb0312c15228c4d42f46c189b86ed90 91881ba86e2f7c9cb12ec883c063e391c7e025d2 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489663227 +0100 checkout: moving from master to vDalston.M1
91881ba86e2f7c9cb12ec883c063e391c7e025d2 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489663239 +0100 checkout: moving from 91881ba86e2f7c9cb12ec883c063e391c7e025d2 to master
320597b84bb0312c15228c4d42f46c189b86ed90 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489663258 +0100 rebase: aborting
320597b84bb0312c15228c4d42f46c189b86ed90 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489663258 +0100 rebase: updating HEAD
320597b84bb0312c15228c4d42f46c189b86ed90 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489663262 +0100 checkout: moving from Camden.x to master
320597b84bb0312c15228c4d42f46c189b86ed90 0ccd2833e149e9b8a7974ecf74a5e9e172322ab9 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489663275 +0100 pull --rebase origin master: checkout 0ccd2833e149e9b8a7974ecf74a5e9e172322ab9
0ccd2833e149e9b8a7974ecf74a5e9e172322ab9 0ccd2833e149e9b8a7974ecf74a5e9e172322ab9 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489663275 +0100 rebase finished: returning to refs/heads/master
0ccd2833e149e9b8a7974ecf74a5e9e172322ab9 29dde5f8e4c5096612ac8669dd7bfbcc95c7ef39 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489664824 +0100 checkout: moving from master to Dalston.RC1
29dde5f8e4c5096612ac8669dd7bfbcc95c7ef39 e4d44f5a1a67429e37edbb57d3da96bb6717266c Marcin Grzejszczak <marcin@grzejszczak.pl> 1489668889 +0100 checkout: moving from Dalston.RC1 to vCamden.M1
e4d44f5a1a67429e37edbb57d3da96bb6717266c 0ccd2833e149e9b8a7974ecf74a5e9e172322ab9 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489668895 +0100 checkout: moving from e4d44f5a1a67429e37edbb57d3da96bb6717266c to master

View File

@@ -0,0 +1 @@
0000000000000000000000000000000000000000 6882449721e48f955b102606ae3fc2535ebbd4cb Marcin Grzejszczak <marcin@grzejszczak.pl> 1481883884 +0100 branch: Created from refs/remotes/origin/Brixton

View File

@@ -1,4 +1,3 @@
0000000000000000000000000000000000000000 b05cdc5318cbc5c049a391fe67ac4a8cf763689d Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486373153 +0100 branch: Created from refs/remotes/origin/Camden.x
b05cdc5318cbc5c049a391fe67ac4a8cf763689d 25af4f2162cdf0642c78ea8e63c1744158b6ad1b Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486377649 +0100 commit: Bumping versions before release
25af4f2162cdf0642c78ea8e63c1744158b6ad1b a29f784a15fc3d039d4dfec619ebcddaf0ef8b8a Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486378936 +0100 revert: Going back to snapshots
a29f784a15fc3d039d4dfec619ebcddaf0ef8b8a b566ab3bea0506bccaa10f83784a41673606d6ee Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486379057 +0100 commit (amend): Going back to snapshots
0000000000000000000000000000000000000000 c8bb5894e1e198e5fe646b97bcbb75fe4746d30b Marcin Grzejszczak <marcin@grzejszczak.pl> 1481127532 +0100 branch: Created from refs/remotes/origin/Camden.x
c8bb5894e1e198e5fe646b97bcbb75fe4746d30b 821555cad8a6132fd045755733e6a0ec6d0957f3 Marcin Grzejszczak <marcin@grzejszczak.pl> 1488793315 +0100 reset: moving to origin/master
821555cad8a6132fd045755733e6a0ec6d0957f3 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1488793321 +0100 rebase finished: refs/heads/Camden.x onto 320597b84bb0312c15228c4d42f46c189b86ed90

View File

@@ -0,0 +1 @@
0000000000000000000000000000000000000000 29dde5f8e4c5096612ac8669dd7bfbcc95c7ef39 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489664824 +0100 branch: Created from refs/remotes/origin/Dalston.RC1

View File

@@ -1,3 +1,4 @@
0000000000000000000000000000000000000000 e1248f716b5656af04ded489b481db45ad3dfc8f Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1473364042 +0200 clone: from git@github.com:spring-cloud/spring-cloud-release.git
e1248f716b5656af04ded489b481db45ad3dfc8f 32ebcd2c317339400d65ad43999d4e5ddc05bd30 Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486379095 +0100 rebase finished: refs/heads/master onto 32ebcd2c317339400d65ad43999d4e5ddc05bd30
32ebcd2c317339400d65ad43999d4e5ddc05bd30 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1488827673 +0100 rebase finished: refs/heads/master onto 320597b84bb0312c15228c4d42f46c189b86ed90
0000000000000000000000000000000000000000 3f8925dcec6d590f62429edea458812128c1c57f Marcin Grzejszczak <marcin@grzejszczak.pl> 1481127445 +0100 clone: from git@github.com:spring-cloud/spring-cloud-release.git
3f8925dcec6d590f62429edea458812128c1c57f 821555cad8a6132fd045755733e6a0ec6d0957f3 Marcin Grzejszczak <marcin@grzejszczak.pl> 1481128769 +0100 commit: Bumping contract for Dalston
821555cad8a6132fd045755733e6a0ec6d0957f3 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1488809155 +0100 rebase finished: refs/heads/master onto 320597b84bb0312c15228c4d42f46c189b86ed90
320597b84bb0312c15228c4d42f46c189b86ed90 0ccd2833e149e9b8a7974ecf74a5e9e172322ab9 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489663275 +0100 rebase finished: refs/heads/master onto 0ccd2833e149e9b8a7974ecf74a5e9e172322ab9

View File

@@ -1,2 +0,0 @@
ccc57368d5e766e493c57f44333deae7eca6d864 7ac1649d4b941fdc03f877ab7d929a52018a1f75 Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1474826096 +0200 fetch: fast-forward
7ac1649d4b941fdc03f877ab7d929a52018a1f75 6882449721e48f955b102606ae3fc2535ebbd4cb Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486372922 +0100 fetch: fast-forward

View File

@@ -0,0 +1 @@
0000000000000000000000000000000000000000 8650838d6ebb575eb99fcd4e6dbe86454384709b Marcin Grzejszczak <marcin@grzejszczak.pl> 1489662694 +0100 fetch: storing head

View File

@@ -1 +0,0 @@
0000000000000000000000000000000000000000 928e0d8389dcee60189d6c0eb737ab9376e87f54 Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1474826096 +0200 fetch: storing head

View File

@@ -1,2 +1 @@
0000000000000000000000000000000000000000 b05cdc5318cbc5c049a391fe67ac4a8cf763689d Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486372922 +0100 fetch: storing head
b05cdc5318cbc5c049a391fe67ac4a8cf763689d b566ab3bea0506bccaa10f83784a41673606d6ee Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486379066 +0100 update by push
c8bb5894e1e198e5fe646b97bcbb75fe4746d30b b566ab3bea0506bccaa10f83784a41673606d6ee Marcin Grzejszczak <marcin@grzejszczak.pl> 1488899998 +0100 pull --rebase origin Camden.x: fast-forward

View File

@@ -0,0 +1 @@
0000000000000000000000000000000000000000 29dde5f8e4c5096612ac8669dd7bfbcc95c7ef39 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489662694 +0100 fetch: storing head

View File

@@ -1 +1 @@
0000000000000000000000000000000000000000 e1248f716b5656af04ded489b481db45ad3dfc8f Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1473364042 +0200 clone: from git@github.com:spring-cloud/spring-cloud-release.git
0000000000000000000000000000000000000000 3f8925dcec6d590f62429edea458812128c1c57f Marcin Grzejszczak <marcin@grzejszczak.pl> 1481127445 +0100 clone: from git@github.com:spring-cloud/spring-cloud-release.git

View File

@@ -1,3 +1,3 @@
e1248f716b5656af04ded489b481db45ad3dfc8f 530a739b2abeaae75c267dec70ba03d507afe81b Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1474826096 +0200 fetch: fast-forward
530a739b2abeaae75c267dec70ba03d507afe81b 32ebcd2c317339400d65ad43999d4e5ddc05bd30 Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1486372922 +0100 fetch: fast-forward
32ebcd2c317339400d65ad43999d4e5ddc05bd30 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1488827673 +0100 pull --rebase origin master: fast-forward
3f8925dcec6d590f62429edea458812128c1c57f 821555cad8a6132fd045755733e6a0ec6d0957f3 Marcin Grzejszczak <marcin@grzejszczak.pl> 1481128927 +0100 update by push
821555cad8a6132fd045755733e6a0ec6d0957f3 320597b84bb0312c15228c4d42f46c189b86ed90 Marcin Grzejszczak <marcin@grzejszczak.pl> 1488793321 +0100 pull --rebase origin master: fast-forward
320597b84bb0312c15228c4d42f46c189b86ed90 0ccd2833e149e9b8a7974ecf74a5e9e172322ab9 Marcin Grzejszczak <marcin@grzejszczak.pl> 1489662694 +0100 fetch: fast-forward

View File

@@ -1 +1 @@
0000000000000000000000000000000000000000 dd40ebe950c0a0cd5de542e3d0e7a0e1ac4e70aa Marcin Grzejszczak <mgrzejszczak@pivotal.io> 1474826091 +0200 WIP on master: e1248f7 Revert to snapshots
0000000000000000000000000000000000000000 9d396e0bebeba62d284c8539c952f17d764647d1 Marcin Grzejszczak <marcin@grzejszczak.pl> 1481128706 +0100 WIP on Camden.x: c8bb589 Bump versions for next release

View File

@@ -0,0 +1,2 @@
xm<>=k<>0@;<3B>W<EFBFBD>^<10>8<EFBFBD><12><12><>K<EFBFBD><4B>p'_<1C><>eTy<54>}K<>.]<1F><>Ke<4B>s<03><><EFBFBD>U Ƒzf$k<><12>8
<EFBFBD><EFBFBD><EFBFBD><1E><>NV<4E>Į[<5B><><EFBFBD><EFBFBD>Y<EFBFBD>ǁ2kgl2<6C><32>!<21><><EFBFBD><EFBFBD>><3E>9x<19><>hk<68>R<EFBFBD><52>j<EFBFBD> <0B><>.<2E><>=<3D><> <09><><EFBFBD><EFBFBD><EFBFBD>S<><53> <0C><10><>f<EFBFBD>gm<67><6D><EFBFBD><EFBFBD><EFBFBD>I<EFBFBD>sn<73><1B>a)U<><55><EFBFBD>q<EFBFBD><71><EFBFBD><EFBFBD><EFBFBD><15>ɺ<EFBFBD>u<EFBFBD><75><EFBFBD> N<>4h<05><><EFBFBD>S<EFBFBD><53>4.L<>

View File

@@ -1 +0,0 @@
x<01>ν<0E>0@a<>><3E><>ML<4D><4C>M<EFBFBD>qsr<73>.<2E>-<2D>PH<50><48><EFBFBD><EFBFBD><1F><> _<0E><><EFBFBD>F<>J<01>tG<74>ZFWk<57><6B>V<><10><>JFC\<5C><>9<EFBFBD>l<EFBFBD>R<01><><EFBFBD><01>qd<71>qJ<71><4A><1D><><EFBFBD><EFBFBD><EFBFBD>QEk<45>f<EFBFBD>*<2A>1<EFBFBD>

View File

@@ -1,3 +0,0 @@
x+)JMU013g040031Q<31>K<EFBFBD>,<2C>L<EFBFBD><4C>/JeK<>a<EFBFBD>*~<7E>9<EFBFBD><39>vf<76><66><EFBFBD><EFBFBD><EFBFBD>]<5D><>M <0C>@A/<2F>,<2C>a<EFBFBD><61>q]~<7E>Y,|\8<>y<EFBFBD>0D<30>Z<
fHqjIIf^z<>^EnC<>i<EFBFBD><69><EFBFBD>7Kʹ<4B>N<>t<EFBFBD>ٴ<EFBFBD><D9B4>ϧ0<CFA7>%E<>e<EFBFBD><65>z<EFBFBD>@e<>_ygo<67><6F>P<EFBFBD><50><EFBFBD><EFBFBD><EFBFBD><EFBFBD>g<EFBFBD>'<27><17><>*<2A><>tv<74> v<>+<2B>(a<><61><EFBFBD>Vl2<6C><32><EFBFBD><EFBFBD><EFBFBD>uNƺ\<5C><>|<7C>C<EFBFBD><05>:<3A><><EFBFBD><EFBFBD>%<25><>'3H<33><79>@<40>ٓ<7F><D993>1Qu<15>מ<EFBFBD> q<P<><50><EFBFBD><EFBFBD><EFBFBD>'<><7F><4D>S
<EFBFBD>V<EFBFBD>|Vp<56><70><1B>sSS<05><><EFBFBD><19>j<EFBFBD><>3<EFBFBD><33><EFBFBD><EFBFBD>re<72>

View File

@@ -0,0 +1,5 @@
x<01><>]o<>0<14><>mEqI<71>nL<13><>Lb i<13><02>֍<EFBFBD><D68D>kbG<62><47>!<21>;<3B><>I<EFBFBD><49>u<13><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>=<3D>9NV<4E>Y%g<><17><><EFBFBD>ծ<EFBFBD><D5AE>{i<>2z<32><7A><EFBFBD>Y<EFBFBD>H]<18><>f<EFBFBD>~<7E><>1{<7B>^<5E>S<EFBFBD>Xs' <0B><>Z<EFBFBD>EZz<5A><7A>)<29><><EFBFBD>Ԅ7<D484>(%1vC<76>|<7C><>dnA<6E>|<7C><>^<5E>u<1D>ޢ<EFBFBD>|6;<3B>?oo<6F>p<EFBFBD><70><EFBFBD><EFBFBD><EFBFBD>s]<5D>t:<3A>s<><73>7<EFBFBD><37>]=-9<><39>9Mf<4D><66><EFBFBD>V!<21>1<><1C>=Z<03>ƚ<EFBFBD><C69A>$rȋ<72><C88B><02><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݒ<EFBFBD>2<EFBFBD>`t<><74><EFBFBD>[<5B>ּ<EFBFBD>p <20>3<EFBFBD>d<EFBFBD><64><EFBFBD><EFBFBD>f<EFBFBD><14>ё
<EFBFBD>4<EFBFBD>J<EFBFBD><EFBFBD><EFBFBD>{>ڪU<15>;
7a}<7D><>k^ <0B><><EFBFBD><EFBFBD>%<25><>ء{?<3F><><EFBFBD><EFBFBD>
<EFBFBD><EFBFBD>7<EFBFBD><1B>d <20>K<04>\<0E>2<EFBFBD><32>|<7C>qtB<74>ª&<26><>Xe<><65><EFBFBD>šFC<><43>G<EFBFBD>Ej<45><6A><EFBFBD>4<EFBFBD><34>A<10>%Yq'<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%<04>:<3A> b<ڕ<><DA95>J9/YYh<59>"<22><>j<EFBFBD><6A>~<01>AU"<22><>e<EFBFBD><65><EFBFBD>{S<><53><0E><><EFBFBD>p<12>!<21><><1E>t2!<21><><EFBFBD>ʢ<EFBFBD>a<EFBFBD><61>@a<>ZmZ<6D>!^2an<61><6E><EFBFBD><EFBFBD>V2<56><32>x7<78>W <0B><>G<1F><><16><>ـ}<7D><>z?<3F>8L<38><<3C>b!<21>!A<18>S<EFBFBD>O{<><7F><EFBFBD>]<5D>\<5C><><1D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>H<EFBFBD>E6<45><36><EFBFBD>9<EFBFBD>Ki<4B>~"_<><5F><01><><02><08><><EFBFBD><:<3A>=0<18>^<5E>S<EFBFBD><53><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>k<EFBFBD><6B>>Y<>6 dY<64><16><><EFBFBD>3O<33><4F><EFBFBD>f<EFBFBD><66><EFBFBD>5<EFBFBD>8<EFBFBD>k<><6B><EFBFBD>6
<EFBFBD>c#aw<1D>

View File

@@ -1,7 +0,0 @@
x<01><54>X<10>5_q<5F><71>g… <0B>f<EFBFBD><0F><>"IoGB<> <20><><07>[oܻ<6F>ݧS<DDA7><53><EFBFBD>{<<3C><19>$E<>5<EFBFBD>Y"&<26>RD<52>Œ <09><><EFBFBD>" <20>B<EFBFBD><42>9<EFBFBD><39>Y<EFBFBD><59>,<2C>Fi<46><69>ј<EFBFBD>3<EFBFBD><33><EFBFBD>D{Gr$<24><>ƐAyN<79>$cs<02><><EFBFBD><EFBFBD><EFBFBD>4Ţe.<2E><11>}<7D>&<26><08>*<2A><><EFBFBD><EFBFBD>/<2F>_<EFBFBD><5F>o<EFBFBD><6F>/ iҐF<D290>",<2C>9<EFBFBD><39>3<EFBFBD><33>Y<EFBFBD><59>T<15><EFBFBD>r2<72><32><EFBFBD><EFBFBD>=)<29><><EFBFBD><17><>A6NU<4E>~J<><4A>
nD<EFBFBD>b+X) <1C><><EFBFBD><EFBFBD>{<7B>V<EFBFBD><56>k&<26><01>y<EFBFBD><79><EFBFBD>8<EFBFBD><17><EFBFBD><7F>uc<75> T<>)A<<16>":ڕ<><DA95>I:MV<4D>S<EFBFBD>ZB<5A><42>%U<>l<EFBFBD>r<EFBFBD><72>L<02>L<EFBFBD><4C><EFBFBD><12><><EFBFBD>Y磄<59><E7A384><EFBFBD>(4/r<>Mx<t<>ʈ<EFBFBD>.<2E><>[<5B>l<EFBFBD>pT%}<7D>\<5C>.<2E>M<1F>ڸJWVݸ<56>88z`@<40><><R5o<35><6F><EFBFBD>9jl<6A><6C>ǸT<C7B8><05>[ <20><>%\<5C>ӄ)s<>L<EFBFBD>t<EFBFBD>` <0E>k~s}D<> <06>u<EFBFBD>-g|
^<5E><><EFBFBD>Է +<2B>ϫ<>Pry<72><>]<06>8<EFBFBD><38>EO<45><4F>x<EFBFBD>S<EFBFBD>Û/<07><>vK0@<40>t<EFBFBD>\<5C>L/<1A>-<1A>R<EFBFBD><52>kdї<64>/<15>` <0C><><EFBFBD><EFBFBD>S<><53>a<EFBFBD>̯<EFBFBD><CCAF>[<5B>n!U<>a<EFBFBD>c@<40><>6<EFBFBD><36>;<3B>h¶ḽ<6C><19>
]]M <0C>s<EFBFBD>Z\H<>!׎!<21><><0F>X
<EFBFBD>N<EFBFBD><EFBFBD>H<EFBFBD>'o<>1<10><>d1<64><31><EFBFBD>ŝ<EFBFBD><C59D><EFBFBD><03><>+g@J<><4A>ι<EFBFBD><CEB9>o<EFBFBD>n6<6E>hw<68><77>|<7C><>lE<>2 <0C>ir1ID<><44>MU<4D>_Cxz^<5E>@<40>.Vg<56><67><EFBFBD> <0B><><EFBFBD>u-<1C><19>
݅
<EFBFBD><EFBFBD><EFBFBD>

View File

@@ -0,0 +1,2 @@
x+)JMU04<30>d040031Qrut<75>u<EFBFBD>KL<4B>Ofp<66><70>%<25><><EFBFBD><EFBFBD>ô<EFBFBD>ۿ<EFBFBD>]x<><78>yW\+P<><50><EFBFBD><EFBFBD>BzFAbzj<7A>^q<06>RY<52><59>
<EFBFBD> <15><>LX<4C>q<EFBFBD>Lw<4C><77>Cf<43>a<EFBFBD>y%E<><10><><EFBFBD>e<EFBFBD><65><EFBFBD><EFBFBD><EFBFBD>w<EFBFBD><77><EFBFBD>g?<3F><><EFBFBD>o<EFBFBD><6F>ԅ<EFBFBD>*.(<28><>K<EFBFBD>M<EFBFBD><4D>/M<>-.I,*I-*<2A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>לB<><42>YyN,<2C> B<01><>C?

View File

@@ -0,0 +1 @@
x<01><><EFBFBD>N<EFBFBD>0D9<44>+V<>ٛul$<24>P<EFBFBD><50><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Mc<4D>q*ǭ<><C7AD>i<EFBFBD><0F>mF<6D><46><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>=<3D>C<EFBFBD>"<22>m`L<>H<EFBFBD>%<25><> q<>Od<4F>d<EFBFBD><64>5<18>G<><47>UJ<1A>$<18><><C3BD><EFBFBD><EFBFBD>;<3B>8LZأ<5A>M<EFBFBD><4D>u<EFBFBD><75>m^+<2B><>\`<60>_M*<<3C>p<17><>|Y<1F><><EFBFBD><EFBFBD>!OH<4F><48><1E><>Z<EFBFBD><5A><EFBFBD>[<5B><><EFBFBD><1A>"<22><><EFBFBD>S<EFBFBD><53><EFBFBD>q<>r<EFBFBD>

View File

@@ -0,0 +1,4 @@
x<01><>QJ1D<><44>)<29>.<2E>Lw:<3A>EDo<44><6F><EFBFBD><EFBFBD><EFBFBD><EFBFBD><1D>I<EFBFBD>L<14><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>*<2A>G<EFBFBD><47><EFBFBD>u0<><30>0<EFBFBD>*<2A>q<><12>c?y<1B>la)\<5C>%'K9
;s<><73>u@)Q<><51>N] Jg<4A><67>S<EFBFBD><53>S<EFBFBD><53>!<21>/<2F>MF>ǥu8<75>H<EFBFBD><17><1E><><EFBFBD><EFBFBD>=<ߖ<>6<EFBFBD>zX<7A>8<>Of<0E><>h<EFBFBD>Z<EFBFBD><5A><EFBFBD><EFBFBD><7F><EFBFBD><EFBFBD>]<5D><><EFBFBD>
<EFBFBD>"<22>C78<37>
<EFBFBD><EFBFBD>֢<EFBFBD><EFBFBD>vB<EFBFBD>zU<EFBFBD><EFBFBD><EFBFBD>n6P<36>

Some files were not shown because too many files have changed in this diff Show More