INMYS WIKI

Инженерами для инженеров

Инструменты пользователя

Инструменты сайта


wiki:git:start

Различия

Показаны различия между двумя версиями страницы.

Ссылка на это сравнение

Предыдущая версия справа и слеваПредыдущая версия
Следующая версия
Предыдущая версия
wiki:git:start [2023/01/03 19:52] Roman Abakumovwiki:git:start [2023/01/19 23:26] (текущий) Roman Abakumov
Строка 9: Строка 9:
  
 https://levelup.gitconnected.com/how-to-commit-multiline-messages-in-git-commit-bcd76f81919c https://levelup.gitconnected.com/how-to-commit-multiline-messages-in-git-commit-bcd76f81919c
 +
 +https://slmkitani.medium.com/change-git-commits-datetime-all-supported-formats-3522f4b1558d
 +
 +При ошибке ''fatal: detected dubious ownership in repository'' сделать:\\
 +''git config --global --add safe.directory *''
  
 {{indexmenu>.#2|skipfile+/index|start/ nsort tsort}} {{indexmenu>.#2|skipfile+/index|start/ nsort tsort}}
 +
 +<code>
 +git remote -v
 +# View existing remotes
 +# origin  https://github.com/user/repo.git (fetch)
 +# origin  https://github.com/user/repo.git (push)
 +
 +git remote set-url origin https://github.com/user/repo2.git
 +# Change the 'origin' remote's URL
 +
 +git remote -v
 +# Verify new remote URL
 +# origin  https://github.com/user/repo2.git (fetch)
 +# origin  https://github.com/user/repo2.git (push)
 +</code>
wiki/git/start.1672775579.txt.gz · Последнее изменение: 2023/01/03 19:52 — Roman Abakumov