Deleting the .git folder may cause problems.
If we want to delete all of our commits history, but keep the code in its current state:
# Check out to a temporary branch:
git checkout --orphan TEMP_BRANCH
# Add all the files:
git add -A
Deleting the .git folder may cause problems.
If we want to delete all of our commits history, but keep the code in its current state:
# Check out to a temporary branch:
git checkout --orphan TEMP_BRANCH
# Add all the files:
git add -A
The Intuitive Vue Framework
Information and concepts about the Nuxt.js Framework, see Nuxt.js docs for more indepth information
$ npm init nuxt-app {project-name}
Project Name: {project-name}
Programming language: JavaScript
| <?php | |
| /** | |
| * PHP PDO Class | |
| * | |
| * @require PHP >= 8.0 | |
| * @usage | |
| * | |
| * // Construct | |
| * $db = new Database( '$db_host', '$db_name', '$db_user', '$db_pass' ); | |
| * $db->setTable = 'test_table'; |
Script will easily download latest ts3server files and update the server automatically.
| /* | |
| * Default WP Alignment Classes | |
| *****************************************************************************/ | |
| .aligncenter,.alignleft,.alignright { | |
| display: block; | |
| padding: 0; | |
| } | |
| .aligncenter { |