All of lore.kernel.org
 help / color / mirror / Atom feed
From: Pavel Roskin <proski@gnu.org>
To: git <git@vger.kernel.org>, Petr Baudis <pasky@ucw.cz>
Subject: Proposed script: cg-info
Date: Tue, 05 Jul 2005 01:46:12 -0400	[thread overview]
Message-ID: <1120542372.17286.7.camel@dv> (raw)

Hello!

It would be useful to have a script to display current status of the
repository - branches, current branch and merge status.  Maybe I'm
missing something, but I don't see such script.

I wrote a script that would do that.  I'm still not fully familiar with
the concepts of cogito, so maybe wrong terms are used in the script.  I
just want to offer this scripts as a base for further work.

cg-info sounds very pretentious, so maybe the script should be renamed
to cg-heads-ls or cg-admin-status or something like that.

Signed-off-by: Pavel Roskin <proski@gnu.org>

#!/usr/bin/env bash
#
# Show status of the GIT repository.
# Copyright (c) Pavel Roskin 2005
#
# The output includes the list of branches and merge status.
# Current branch is marked by ">"

USAGE="cg-info"

. ${COGITO_LIB}cg-Xlib

mkdir -p $_git/refs/heads
[ "$(find $_git/refs/heads -follow -type f)" ] \
       || die "List of heads is empty."

branch=
headlink=$(readlink $_git/HEAD)
if [ "$headlink" ]; then
	branch=$(basename "$headlink")
else
	headsha1=$(cat $_git/HEAD)
	echo "HEAD: $headsha1"
fi

echo "Heads:"

for head in $_git/refs/heads/*; do
	headsha1=$(cat $head)
	headbase=$(basename $head)
	if [ "$headbase" = "$branch" ]; then
		echo ">$headbase $headsha1"
	else
		echo " $headbase $headsha1"
	fi
done

if [ -s "$_git/blocked" ]; then
	tmp=$(cat "$_git/blocked")
	echo "Blocked: $tmp"
fi

if [ -s "$_git/merging" ]; then
	tmp=$(cat "$_git/merging")
	echo "Merging: $tmp"
fi

if [ -s "$_git/merging-sym" ]; then
	tmp=$(cat "$_git/merging-sym")
	echo "Merging-sym: $tmp"
fi

if [ -s "$_git/merge-base" ]; then
	tmp=$(cat "$_git/merge-base")
	echo "Merge-base: $tmp"
fi


-- 
Regards,
Pavel Roskin

             reply	other threads:[~2005-07-05  5:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-07-05  5:46 Pavel Roskin [this message]
2005-07-05  9:22 ` Proposed script: cg-info Petr Baudis

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1120542372.17286.7.camel@dv \
    --to=proski@gnu.org \
    --cc=git@vger.kernel.org \
    --cc=pasky@ucw.cz \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.