2 Перенос репозитория
max edited this page 2022-04-26 19:18:13 +03:00

Перенос репозитория

git clone --bare https://hostname/exampleuser/old-repository.git
cd old-repository.git
git lfs fetch --all
git push --mirror https://hostname/exampleuser/new-repository.git
git lfs push --all https://github.com/exampleuser/new-repository.git

Создать новый репозиторий из командной строки

touch README.md
git init
git checkout -b main
git add README.md
git commit -m "first commit"
git remote add origin https://gitbit.ru/(user|company)/repository.git
git push -u origin main

Push существующего репозитория из командной строки

git remote add origin https://gitbit.ru/(user|company)/repository.git
git push -u origin main