We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ce7968 commit d7d0eaeCopy full SHA for d7d0eae
commit
@@ -31,16 +31,7 @@ if ! git rev-parse --is-inside-work-tree > /dev/null 2>&1; then
31
fi
32
33
34
-# Check if there are any changes in the remote repository
35
-remote_changes=$(git fetch && git rev-list HEAD..origin/master --count)
36
-if [ $remote_changes -gt 0 ]; then
37
- read -p "There are $remote_changes remote change(s). Do you want to pull the changes? (y/n): " pull_changes
38
- if [ "$pull_changes" == "y" ]; then
39
- git pull origin master
40
- fi
41
-fi
42
-
43
-# Prompt for user input
+#Prompt for user input
44
read -p "Enter commit message: " message
45
echo
46
commit~
0 commit comments