An open API service indexing awesome lists of open source software.

https://github.com/infinitypaul/laravel-9


https://github.com/infinitypaul/laravel-9

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

## Instructions
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private fork by duplicating the repo is documented here.

For this assignment the commands are:

Create a bare clone of the repository.

git clone --bare git@github.com:autoklose/laravel-9.git
Create a new private repository on Github and name it laravel-9.

Mirror-push your bare clone to your new repository.

Replace with your actual Github username in the url below.

cd laravel-9.git
git push --mirror git@github.com:/laravel-9.git
Remove the temporary local repository you created in step 1.

cd ..
rm -rf laravel-9.git
You can now clone your laravel-9 repository on your machine (in my case in the code folder).

cd ~/code
git clone git@github.com:/laravel-9.git