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 e13013e commit de577ebCopy full SHA for de577eb
.zsh/autoload/post/40_git_helpers.zsh
@@ -5,7 +5,7 @@ function start_versioning() {
5
if [[ !( -d './.git') ]]; then
6
git init
7
git add . > /dev/null
8
- git commit -m "Initial commit"
+ git commit -m "Initial commit" > /dev/null
9
fi
10
#TODO: write data to a syslog-ng file, which will be replayed back later
11
popd > /dev/null
@@ -19,8 +19,8 @@ function start_versioning() {
19
function commit_all() {
20
pushd "$1" > /dev/null
21
if [[ -d './.git' && ! -z $(git status --porcelain) ]]; then
22
- git add -A .
23
- git commit -m "$2"
+ git add -A . > /dev/null
+ git commit -m "$2" > /dev/null
24
25
26
}
0 commit comments