BrĂ¡ulio Bhavamitra wrote:
> root = rev-parse --show-toplevel
What is your usecase for this?
> upstream = !git for-each-ref --format='%(upstream:short)' $(git
> symbolic-ref -q HEAD)
Again, what is the usecase? What doesn't @{u} do?
> upstream-remote = !git upstream | sed -e 's/\\/.*$//g'
Windows back-slashes?
> out = !git fetch `git upstream-remote` && git l `git upstream`..HEAD
I didn't understand this at all. What are you doing?
> in = pull --dry-run
Why?
> unmerged = !git ls-files --unmerged | cut -f2 | uniq
> untracked = ls-files --other --exclude-standard
> staged = ls-files --staged
> modified = ls-files --modified
> deleted = ls-files --deleted
What is wrong with git status showing a unified output?
> head = !git l -1
What is git l again?
> current = rev-parse --abbrev-ref HEAD
Why don't you use a prompt? Use the one in contrib/completion/git-prompt.sh.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html