ALT Linux Team development discussions
 help / color / mirror / Atom feed
* [devel] git-commit одиночных файлов
@ 2006-12-03 18:08 Денис Смирнов
  2006-12-03 18:52 ` Sergey Vlasov
  0 siblings, 1 reply; 3+ messages in thread
From: Денис Смирнов @ 2006-12-03 18:08 UTC (permalink / raw)
  To: devel

[-- Attachment #1: Type: text/plain, Size: 884 bytes --]

В git workdir изменено несколько файлов.

Пытаюсь делать как раньше:

[mithraen@localhost seirospbx]$ git commit acinclude.m4
Different in index and the last commit:
M       seirospbx/acinclude.m4
You might have meant to say 'git commit -i paths...', perhaps?

Нет, -i я не хочу, потому как мне не нужен commit остальных изменений.

Потому:
[mithraen@localhost seirospbx]$ git commit -o acinclude.m4
Different in index and the last commit:
M       seirospbx/acinclude.m4
You might have meant to say 'git commit -i paths...', perhaps?

А вот тут я сильно задумался.

git commit -a, ясное дело работает. Но что-то такая ситуация мне немножко не
нравится.

-- 
С уважением, Денис

http://freesource.info
----------------------------------------------------------------------------
Это политический вопрос, я бы не хотел в него ввязываться.
		-- ldv in #7755

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [devel] git-commit одиночных файлов
  2006-12-03 18:08 [devel] git-commit одиночных файлов Денис Смирнов
@ 2006-12-03 18:52 ` Sergey Vlasov
  2006-12-03 18:58   ` Денис Смирнов
  0 siblings, 1 reply; 3+ messages in thread
From: Sergey Vlasov @ 2006-12-03 18:52 UTC (permalink / raw)
  To: devel

[-- Attachment #1: Type: text/plain, Size: 1650 bytes --]

On Sun, Dec 03, 2006 at 09:08:34PM +0300, Денис Смирнов wrote:
> В git workdir изменено несколько файлов.
> 
> Пытаюсь делать как раньше:
> 
> [mithraen@localhost seirospbx]$ git commit acinclude.m4
> Different in index and the last commit:
> M       seirospbx/acinclude.m4

Значит, файлы были не просто изменены - для них вызывался
git-update-index.

> You might have meant to say 'git commit -i paths...', perhaps?
> 
> Нет, -i я не хочу, потому как мне не нужен commit остальных изменений.
> 
> Потому:
> [mithraen@localhost seirospbx]$ git commit -o acinclude.m4
> Different in index and the last commit:
> M       seirospbx/acinclude.m4
> You might have meant to say 'git commit -i paths...', perhaps?
> 
> А вот тут я сильно задумался.
> 
> git commit -a, ясное дело работает. Но что-то такая ситуация мне немножко не
> нравится.

Только что аналогичная ситуация обсуждалась в рассылке git:

http://thread.gmane.org/gmane.comp.version-control.git/33117/

Чтобы избавиться от мешающих изменений индекса, можно просто выполнить
команду "git reset" (без дополнительных параметров и опций эта команда
сбрасывает только индекс в состояние, соответствующее последнему
коммиту, но не меняет сами файлы в рабочей копии).

Можно также сбросить индекс только для тех файлов, которые нужно
закоммитить отдельно:

git ls-tree HEAD -- that-file | git update-index --index-info
git commit that-file

Возможно, в последующей версии git эта проверка будет совсем удалена
из git-commit - сейчас она там есть только по той причине, что
некоторое время назад поведение git-commit при указании списка файлов
менялось.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [devel] git-commit одиночных файлов
  2006-12-03 18:52 ` Sergey Vlasov
@ 2006-12-03 18:58   ` Денис Смирнов
  0 siblings, 0 replies; 3+ messages in thread
From: Денис Смирнов @ 2006-12-03 18:58 UTC (permalink / raw)
  To: devel

[-- Attachment #1: Type: text/plain, Size: 1502 bytes --]

On Sun, Dec 03, 2006 at 09:52:32PM +0300, Sergey Vlasov wrote:

SV> Значит, файлы были не просто изменены - для них вызывался
SV> git-update-index.

Да, это так. Вернее вызывался git commit -a с последующим отказом от
commit'а (что, как я понимаю, означает всего лишь вызов git-update-index
для всех измененных файлов).

 SV> Только что аналогичная ситуация обсуждалась в рассылке git:
 SV> http://thread.gmane.org/gmane.comp.version-control.git/33117/
 SV> Чтобы избавиться от мешающих изменений индекса, можно просто выполнить
 SV> команду "git reset" (без дополнительных параметров и опций эта команда
 SV> сбрасывает только индекс в состояние, соответствующее последнему
 SV> коммиту, но не меняет сами файлы в рабочей копии).

Ясно, спасибо.

 SV> Можно также сбросить индекс только для тех файлов, которые нужно
 SV> закоммитить отдельно:
 SV> git ls-tree HEAD -- that-file | git update-index --index-info
 SV> git commit that-file
 SV> Возможно, в последующей версии git эта проверка будет совсем удалена
 SV> из git-commit - сейчас она там есть только по той причине, что
 SV> некоторое время назад поведение git-commit при указании списка файлов
 SV> менялось.

Не понял. Как вел себя git-commit при указании списка файлов раньше, и как
будет вести себя теперь?

-- 
С уважением, Денис

http://freesource.info
----------------------------------------------------------------------------
У меня специализация -- мелкий хакинг по месту
		-- mike in devel@


[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-12-03 18:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-12-03 18:08 [devel] git-commit одиночных файлов Денис Смирнов
2006-12-03 18:52 ` Sergey Vlasov
2006-12-03 18:58   ` Денис Смирнов

ALT Linux Team development discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/devel/0 devel/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 devel devel/ http://lore.altlinux.org/devel \
		devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
	public-inbox-index devel

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.devel


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git