Skip to content

Latest commit

 

History

History
 
 

utils

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Some utils

git-summary

A script to show the status of the most recently visited git repositories. Requires rupa/z.

Use it as follows:

source git-summary.sh

If you want to be reminded at the first login after booting, you could add the following snippet to your ~/.zshrc:

# show dirty git repositories
ZSH_GIT_PROMPT_DIR=~/software/zsh-git-prompt
if [ -e $ZSH_GIT_PROMPT_DIR/utils/git-summary.sh ]; then
	local lock_file="/tmp/.git_summary_$USER"
	if [ ! -e $lock_file ]; then
		touch $lock_file
		if [ -e $lock_file ]; then
			source $ZSH_GIT_PROMPT_DIR/utils/git-summary.sh
		fi
	fi
fi