Изменил(а) на 'Перенос репозитория'

max 2022-04-26 19:18:13 +03:00
parent 66a0b42d0a
commit 929984b24e

@ -1,3 +1,4 @@
### Перенос репозитория
``` ```
git clone --bare https://hostname/exampleuser/old-repository.git git clone --bare https://hostname/exampleuser/old-repository.git
cd old-repository.git cd old-repository.git
@ -5,3 +6,21 @@ git lfs fetch --all
git push --mirror https://hostname/exampleuser/new-repository.git git push --mirror https://hostname/exampleuser/new-repository.git
git lfs push --all https://github.com/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
```