Skip to content

Commit 86d27a0

Browse files
committed
Updates to the git config & git deploy script.
1 parent 864a914 commit 86d27a0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
deploy = "!bash ~/.dotfiles/git-deploy.sh"
33
[core]
44
editor = vim
5+
autocrlf = input
56
[push]
67
default = simple
78
[user]

git-deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ esac
5151

5252
git pull &&
5353
git checkout $DESTINATION_BRANCH &&
54-
git merge --no-ff $SOURCE_BRANCH -m "Deployment" &&
54+
git merge --no-ff $SOURCE_BRANCH -m "Merging develop into master for deployment." &&
5555
git push origin $DESTINATION_BRANCH &&
5656
git checkout $SOURCE_BRANCH
5757

@@ -63,4 +63,4 @@ if [ "$?" != "0" ]; then
6363
exit 5
6464
fi
6565

66-
exit 0
66+
exit 0

0 commit comments

Comments
 (0)