.. | ||
.gitconfig | ||
.gitignore | ||
README.md |
global .gitignore
Windows cmd.exe
:
git config --global core.excludesFile "%USERPROFILE%\.gitignore"
or PowerShell:
git config --global core.excludesFile "$Env:USERPROFILE\.gitignore"
Linux:
git config --global core.excludesFile '~/.gitignore'
git push remote all
Как отправлять исходники в несколько репозиториев одной командой:
- Создаем новый remote например
all
git remote add "all" git@github.com:username/my-repo.git
- Добавляем в него несколько адресов для пуша
git remote set-url --add --push "all" git@username/my-repo.git
git remote set-url --add --push "all" git@bitbucket.org:username/my-repo.git
- Чтобы запушить сразу в два репозитория выполняем
git push all