Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CiprianSpiridon/0dff60659fdcf005a1d2 to your computer and use it in GitHub Desktop.
Save CiprianSpiridon/0dff60659fdcf005a1d2 to your computer and use it in GitHub Desktop.
Managing Your Laravel Project With Git
#go into your project folder
cd myapp
#initialize git
git init
#check the status
git status
#Configure Git with your name and email
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
#You can add everything and commit it to your repository with two commands.
git add -A
git commit -m "initial checkin"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment