Posts by FelipeMM • 66 points
2 posts
-
5
votes3
answers2334
viewsA: What are the differences between "soft, Mixed, hard" in git reset?
Soft Do not touch the index file or the work tree (but reset the head, or HEAD, as well as all modes). This leaves all your files changed to "Changes to be committed" as the git status would put.…
-
0
votes1
answer276
viewsA: Help in Mysql Phpmyadmin How to insert a table in a database?
The INSERT is used to insert data into tables, not tables into databases. If you want to use a database use the command USE. Instead of: INSERT INTO banco1 ... ; Exchange for: USE banco1; CREATE…