CandyRedTele / meatballs

0 stars 0 forks source link

Meatballs-project

Database restaurant management system

Markdown basics

For better and clearer communication in the issues,
Please take 3 minutes to read mastering-markdown!
Especially for code syntax highlting:

```sql
select * from x
```

And for mentions:

@mention

@GeoffreyBoom @jamg85 @rstor @boombompow @samuelmasuy

git basics

git clone theUrlOfTheRepo
git pull - Retreive changes from the remote repo to your local copy, always pull remote changes before you start working.
git status
git add myFiles
git commit -m "the commit message inside quotes"
git push origin myBranch
git diff - see your changes before commiting
git branch - Create your own branch.
git push --set-upstream origin - Push origin on GitHub.
git checkout - Switch to a branch.