WordPress database error: [Disk full (/tmp/#sql-temptable-1-0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")]
SHOW COLUMNS FROM `wp_cptch_whitelist` LIKE 'ip_from_int'

WordPress database error: [Disk full (/tmp/#sql-temptable-1-0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")]
SHOW FULL COLUMNS FROM `wp_options`

GIT: Merging Branches – My Personal Blog

GIT: Merging Branches

Merge master branch with origin/master branch:

$ git merge origin/master

Result Example:

$ git merge origin/master
Updating 0ebd30c..a99dc51
Fast forward
configure.ac | 1 +
contrib/Makefile.am | 9 +-
...

As fetch and merge are common operation it can be replaced by only one command:

$ git pull

Resolving merge conflicts

Giving up and return to version before merging:

$ git reset --hard

Graphical tool:

$ git mergetool

Leave a Reply

Your email address will not be published. Required fields are marked *

WordPress database error: [Disk full (/tmp/#sql-temptable-1-0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")]
SHOW COLUMNS FROM `wp_cptch_whitelist` LIKE 'ip_from_int'

WordPress database error: [Disk full (/tmp/#sql-temptable-1-0.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")]
SHOW FULL COLUMNS FROM `wp_options`