Skip to content

Commit 1857f9f

Browse files
author
Ben Podgursky
committed
tweak and work without external aliases
1 parent c4666f4 commit 1857f9f

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,23 @@
4444
</properties>
4545

4646

47+
<pluginRepositories>
48+
<pluginRepository>
49+
<id>sonatype-releases</id>
50+
<url>http://oss.sonatype.org/content/repositories/releases</url>
51+
</pluginRepository>
52+
<pluginRepository>
53+
<id>clojars.org</id>
54+
<url>http://clojars.org/repo</url>
55+
</pluginRepository>
56+
57+
<!-- If you want to try SNAPSHOT versions, you need Sonatype's snapshots repo: -->
58+
<pluginRepository>
59+
<id>sonatype-snapshots</id>
60+
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
61+
</pluginRepository>
62+
</pluginRepositories>
63+
4764
<profiles>
4865
<profile>
4966
<id>release-sign-artifacts</id>

src/test/bash/create-sample-git-project.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
echo "Running $0 ..."
44
TARGET_DIR="$1"
55

6+
git config --global alias.co checkout
7+
git config --global alias.br branch
8+
git config --global alias.ci commit
9+
git config --global alias.st status
10+
611
#rm -rf $TARGET_DIR
712
mkdir -p $TARGET_DIR
813
cd $TARGET_DIR

0 commit comments

Comments
 (0)