Hits: 132
Gitlab CI SSH Deploy
Hits: 7475
- Create SSH Key on Remote host
$ remote-server: ssh-keygen -o -t rsa -b 4096 -C "yoru@email.com"
2. Copy Generated Private key from remote Server
$ remote-server: cat .ssh/id_rsaContinue reading “Gitlab CI SSH Deploy”
GitLab CE – CI / CD for Standart PHP Projects and Auto Deploy
Hits: 419
I have on my git repo two basic branches; master und develop
Continue reading “GitLab CE – CI / CD for Standart PHP Projects and Auto Deploy”Git Bash inside PhpStorm
Hits: 205
Go to: File -> Settings -> Tools -> Terminal
If you are using 64 Bit Git Bash(Git for Windows) put this in the Shell Path field.
"C:\Program Files\Git\bin\sh.exe" -login -i
Or for 32 Bit Git Bash put this in the field
"C:\Program Files (x86)\Git\bin\sh.exe" -login -i
Gulp 4 – Error – “Task function must be specified”
Hits: 397
// Gulp task to minify all files
gulp.task('default', ['clean'], function () {
runSequence(
'styles',
'scripts',
'pages'
);
});
If you this Standart Tasks sequence from every Tutorial using, you will be got this error message.