We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 864a914 commit 86d27a0Copy full SHA for 86d27a0
.gitconfig
@@ -2,6 +2,7 @@
2
deploy = "!bash ~/.dotfiles/git-deploy.sh"
3
[core]
4
editor = vim
5
+ autocrlf = input
6
[push]
7
default = simple
8
[user]
git-deploy.sh
@@ -51,7 +51,7 @@ esac
51
52
git pull &&
53
git checkout $DESTINATION_BRANCH &&
54
-git merge --no-ff $SOURCE_BRANCH -m "Deployment" &&
+git merge --no-ff $SOURCE_BRANCH -m "Merging develop into master for deployment." &&
55
git push origin $DESTINATION_BRANCH &&
56
git checkout $SOURCE_BRANCH
57
@@ -63,4 +63,4 @@ if [ "$?" != "0" ]; then
63
exit 5
64
fi
65
66
-exit 0
+exit 0
0 commit comments