Commit ee3a3dc4 by sn

git

1 parent ed6035b7
Showing with 5 additions and 5 deletions
......@@ -14,18 +14,18 @@ mc_git_pull() {
mc_log "git pull $gitdir" $logfile
mc_bashsu "cd $gitdir" 1
mc_bashsu "git branch | grep '*'" 1
git branch | grep '*'
git branch | grep '*' >> $logfile
mc_bashsu "git status -s" 1
git status -s
mc_log "git status -s" $logfile
git status -s >> $logfile
mc_bashsu "git pull" 1
git pull
mc_bashsu "git log | grep -m 1 commit" 1
#mc_bashsu "git log | grep -m 1 commit" 1
git log | grep -m 1 commit >> $logfile
mc_bashsu "git log | grep -m 1 Date" 1
git log | grep -m 1 Date
git log | grep -m 1 Date >> $logfile
echo '----------------------------' >> $logfile
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!