Skip to content
This repository was archived by the owner on Dec 12, 2025. It is now read-only.

Commit

Permalink
Set commit email
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiddelkoop committed Dec 2, 2021
1 parent c61a43a commit 6e8c566
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/aws-create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ git config --global color.ui auto
git config --global push.default simple
git config --global pull.ff only
git config --global user.name "$(git config user.name)"
git config --global user.email "$(git config user.name)"
git config --global user.email "$(git config user.email)"
git clone --branch $BRANCH $REPO
EOF

Expand Down
2 changes: 1 addition & 1 deletion scripts/azure-create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ git config --global color.ui auto
git config --global push.default simple
git config --global pull.ff only
git config --global user.name "$(git config user.name)"
git config --global user.email "$(git config user.name)"
git config --global user.email "$(git config user.email)"
git clone --branch $BRANCH $REPO
EOF

Expand Down
3 changes: 1 addition & 2 deletions scripts/gcp-create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ echo "=== gcp-dev.sh $PROJECT $BRANCH"
echo "+++ creating VM"
gcloud compute instances create --zone=$ZONE $VM --machine-type=e2-highcpu-4 --preemptible


echo "+++ wait for boot"
while ! gcloud compute ssh --zone=$ZONE $NAME@$VM --command='hostname' ; do
sleep 1
Expand All @@ -34,7 +33,7 @@ git config --global color.ui auto
git config --global push.default simple
git config --global pull.ff only
git config --global user.name "$(git config user.name)"
git config --global user.email "$(git config user.name)"
git config --global user.email "$(git config user.email)"
git clone --branch $BRANCH $REPO
EOF

Expand Down

0 comments on commit 6e8c566

Please sign in to comment.