'мерзавец вытягивает' работы команды как 'svn обновление'?

ИДЕЯ IntelliJ работает Flex IDE, если Вы, оказывается, также Java-разработчик. Это свободно, если Вы способствуете проектам с открытым исходным кодом.

25
задан n179911 21 August 2009 в 02:52
поделиться

2 ответа

Если вы хотите, чтобы пул слился с изменениями, которые вы сделали локально, вам нужно сначала зафиксировать свои изменения в локальном каталоге. Или сохраните свои изменения, затем вытащите, а затем повторно примените свой тайник.

21
ответ дан 28 November 2019 в 21:42
поделиться

I think what you want to do is:

  1. commit all changes to your local repository
  2. do a 'git rebase'.

This is slightly better than 'svn update' in my opinion, because it will first change your local working copy to the way it was the last time you pulled or rebased from the remote, then fetch and apply new changes from the remote, and then reapply your locally committed changes. If there's a conflict between your changes and the remote changes, you'll need to resolve them and follow the prompts to continue the rebase operation.

This way the changesets should be applied in the right order.

8
ответ дан 28 November 2019 в 21:42
поделиться
Другие вопросы по тегам:

Похожие вопросы: