Henry

Henry

Did You Know?

Curiosity builds lifelong learning.

1.Open Git Bash.

2.Create a bare clone of the repository.

$ git clone --bare https://github.com/exampleuser/old-repository.git

3.Mirror-push to the new repository.

$ cd old-repository.git
$ git push --mirror https://github.com/exampleuser/new-repository.git

4.Remove the temporary local repository you created in step 1.

$ cd ..
$ rm -rf old-repository.git

Reference and Credit: https://help.github.com/en/articles/duplicating-a-repository

Share This Article

Related Post

Hướng dẫn cài đặt và cấu hình Cr

1. Kết nối với Server / VPS bằng quyền root ...

IPtables for routing over OpenVPN on Linux

Enable forwarding: sysctl -w net.ipv4.ip_forward=1...

OpenVPN Centos 7/8 – Firewall and Routi

Set Firewall Rules 1. Start by checking your active f...

Leave a Comment