Skip to content

Instantly share code, notes, and snippets.

View marcoandre1's full-sized avatar
✌️
Enjoy your day!

Marco E marcoandre1

✌️
Enjoy your day!
View GitHub Profile
@marcoandre1
marcoandre1 / Laravel.md
Last active November 26, 2022 21:25
Pluralsight Laravel tutorial notes

Getting Started wiht Laravel (PHP Framework) - The Basics

Setting up a project with Laravel

  1. PHP Environment Setup : Apache/Nginx, PHP, MySQL
  2. Download Composer : PHP Package Manager
  3. Install Laravel :

composer create-project --prefer-dist laravel/laravel FOLDER
example : composer create-project laravel/laravel getting-started
For more info, go to Laravel Documentation and follow the installation process.

@marcoandre1
marcoandre1 / SSH-configuration-github-gitlab.md
Last active June 1, 2024 05:07
Managing SSH keys for Github and Gitlab

Managing SSH keys for Github and Gitlab

NOTICE: This guide will help you set ssh keys for GitHub and GitLab. However, this is not going to change your commit user.name or user.email. If you need to change those for specific repositories, just run the following commands while in your repository:

git config user.name "Your Name Here"
git config user.email your@email.com

For more info, see this answer. Also, keep in mind this only changes the .git folder inside your repository which never gets added/committed/pushed/uploaded.

I recently had to manage two ssh keys (one for Github and one for Gitlab). I did some research to find the best solution. I am justing putting the pieces together here.