https://github.com/infinitypaul/laravel-9
https://github.com/infinitypaul/laravel-9
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/infinitypaul/laravel-9
- Owner: infinitypaul
- Created: 2023-10-21T16:13:03.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-24T22:03:11.000Z (over 2 years ago)
- Last Synced: 2025-04-05T14:11:15.219Z (over 1 year ago)
- Language: PHP
- Size: 384 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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