Для этого сайта требуется поддержка JavaScript.
Обзор
Помощь
Регистрация
Вход
microsoft
/
git
зеркало из
https://github.com/microsoft/git.git
Следить
1
В избранное
0
Форкнуть
Вы уже форкнули git
0
Код
Задачи
Пакеты
Проекты
Релизы
Вики
Активность
fa3e0655a4
git
/
git-log-script
3 строки
94 B
Plaintext
Исходник
Обычный вид
История
Убрать экранирование
Экранировать
Add "git" and "git-log-script" helper scripts. The "git" script is just shorthand: "git xyz <args>" will just execute "git-xyz-script <args>", which is useful for people used to the CVS naming convention. So "git log" will run the new git-log-script, which is just a wrapper around the new pretty-printing git-rev-list. Cheesy.
2005-06-01 20:13:26 +04:00
#!/bin/sh
Make "git log" use the new git-rev-parse helper See the previous commit for explanations.
2005-06-13 21:07:25 +04:00
git-rev-list --pretty $(git-rev-parse --default HEAD "$@") | LESS=-S ${PAGER:-less}