LINUX.ORG.RU

не выводится git-история

 , , ,


0

1

помогите пожалуйста решить проблему

при использовании гита пользуюсь следующими алиасами для команд:

[alias]
  co = checkout
  ci = commit
  st = status
  br = branch
  hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
  type = cat-file -t
  dump = cat-file -p

сейчас установил nodejs, angular2, angular-cli и пытаюсь работать с git. проблема в том, что не работает команда git hist. остальные работают:

webpack: Compiled successfully.
webpack: Compiling...
Hash: 8c7010464af15a577a21                                                         
Time: 631ms
chunk    {0} polyfills.bundle.js, polyfills.bundle.map (polyfills) 228 kB {4} [initial]
chunk    {1} main.bundle.js, main.bundle.map (main) 3.97 kB {3} [initial] [rendered]
chunk    {2} styles.bundle.js, styles.bundle.map (styles) 10 kB {4} [initial]
chunk    {3} vendor.bundle.js, vendor.bundle.map (vendor) 2.62 MB [initial]
chunk    {4} inline.bundle.js, inline.bundle.map (inline) 0 bytes [entry]
webpack: Compiled successfully.
^C
kalinin@lenovo ~/angular2/routing/routing $ 
kalinin@lenovo ~/angular2/routing/routing $ git add .
kalinin@lenovo ~/angular2/routing/routing $ git ci -m 'first'

*** Please tell me who you are.

Run

  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"

to set your account's default identity.
Omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got 'kalinin@lenovo.(none)')
kalinin@lenovo ~/angular2/routing/routing $ git hist
* fb999d3 2017-02-18 | chore: initial commit from @angular/cli                           _                      _ _    __ _ _ __   __ _ _   _| | __ _ _ __       ___| (_)   / _  |  _ \ / _  | | | | |/ _  |  __|____ / __| | |  | (_| | | | | (_| | |_| | | (_| | | |_____| (__| | |   \____|_| |_|\__  |\____|_|\____|_|        \___|_|_|               |___/ (HEAD -> master) [Angular CLI]
kalinin@lenovo ~/angular2/routing/routing $ git status
On branch master
Changes to be committed:
  (use "git reset HEAD <file>..." to unstage)

	deleted:    src/app/app.component.spec.ts
	modified:   src/app/app.component.ts
	modified:   src/app/app.module.ts

kalinin@lenovo ~/angular2/routing/routing $ git hist
* fb999d3 2017-02-18 | chore: initial commit from @angular/cli                           _                      _ _    __ _ _ __   __ _ _   _| | __ _ _ __       ___| (_)   / _  |  _ \ / _  | | | | |/ _  |  __|____ / __| | |  | (_| | | | | (_| | |_| | | (_| | | |_____| (__| | |   \____|_| |_|\__  |\____|_|\____|_|        \___|_|_|               |___/ (HEAD -> master) [Angular CLI]
kalinin@lenovo ~/angular2/routing/routing $ git br
* master
kalinin@lenovo ~/angular2/routing/routing $ 

подскажите как посмотреть историю гита и не получить кучу непонятных символов

https://i.yapx.ru/Gc93.png



Последнее исправление: prozaik (всего исправлений: 1)

Непонятные символы - это комент такой

chore: initial commit from angular-cli  …
                          _                      _ _
   __ _ _ __   __ _ _   _| | __ _ _ __       ___| (_)
  / _  |  _ \ / _  | | | | |/ _  |  __|____ / __| | |
 | (_| | | | | (_| | |_| | | (_| | | |_____| (__| | |
  \____|_| |_|\__  |\____|_|\____|_|        \___|_|_|
              |___/

pru-mike ★★
()

У тебя не указано имя и email, поэтому коммит НЕ состоялся. Следствие - история пуста.

fatal: unable to auto-detect email address (got 'kalinin@lenovo.(none)')

joy4eg ★★★★★
()
Последнее исправление: joy4eg (всего исправлений: 1)
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.