docker
docker container --help
docker --version
docker version
docker info
| /* _typography.scss - file */ | |
| :root { | |
| --fs-base: 1.6rem; | |
| --h1-size: 3.6rem; | |
| /* NOTE: Use set of predefiend spacing for coherent look and easy updating. | |
| Make sure you use spacing variables with predefined values for +90% of your CSS (padding: var(--gap-md);), | |
| use css calc (margin-top: calc(var(--gap-sm) * -1); = -1.2rem) to make modifications; */ |
| git rm -r --cached . | |
| git add . | |
| git commit -m "fixed untracked files" |
| # This file will only track custom themes | |
| /* | |
| !public_html/ | |
| public_html/* | |
| !public_html/wp-content/ | |
| public_html/wp-content/* | |
| public_html/wp-content/plugins/* |
| var gulp = require('gulp'); | |
| var browserSync = require('browser-sync'); | |
| var reload = browserSync.reload; | |
| var sass = require('gulp-sass'); | |
| // browser-sync task for starting the server. | |
| gulp.task('browser-sync', function() { | |
| //watch files | |
| var files = [ | |
| './*.css', |
parent::__construct( $args ); }
| 0.1) Use the terminal; | |
| 1) Make sure there is no changes in both branches (git status); | |
| 2) Checkout the brach that you want to take the commit from; | |
| 3) Use git log to show the full number of the commit that you want to cherry pick, and copy it from the teminal; | |
| 4) Now checkout the branch that you want to recive; | |
| 5) Then write: git cherry-pick [the number of the commit that you want to take, without brackets] | |
| 6) You are done! or if conflicts appear resolve them manually; | |
| 7) Then commit the changes; |
| .element { | |
| position: relative; | |
| top: 50%; | |
| transform: translateY(-50%); | |
| } |