Git Clone Repo con nombre
git clone https://github.com/foo/repo_name.git new_directory_name
Xenophobic Xenomorph
git clone https://github.com/foo/repo_name.git new_directory_name
git clone url
composer install -> for vendor
npm install -> for node_modules directory
cp .evn.example .env -> for .env file copying
php artisan key:generate -> for APP_KEY in .env file
env connect -> database connecting
php artisan migrate:fresh
php artisan serve
//if has error in composer install ,make following step
composer require laravel/laravel
composer dump-autoload
composer install --no-scripts
composer update
composer update --no-scripts
//checking version
php artisan --version
composer --version
php -v
git clone <repository_url>
git branch -a
git checkout <branch_name>
git clone https://github.com/USERNAME/REPOSITORY.git
git clone https://github.com/user_name/repo.git
git clone <repo> <directory>