Skip to content

Instantly share code, notes, and snippets.

View muratmirgun's full-sized avatar
🏠
Working from home

Murat Mirgün ERCAN muratmirgun

🏠
Working from home
View GitHub Profile
@muratmirgun
muratmirgun / vscode settings
Created August 30, 2020 18:37
vscode-sync
.
@muratmirgun
muratmirgun / History|-10db8f6d|entries.json
Last active January 29, 2023 16:09
Visual Studio Code Settings Sync Gist
{"version":1,"resource":"file:///Users/macbook/Desktop/tourist-kubernetes/mongodb/internal/secret.yaml","entries":[{"id":"EOe7.yaml","timestamp":1673492171627},{"id":"qBwM.yaml","timestamp":1673493067422}]}
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
@muratmirgun
muratmirgun / Makefile
Created July 22, 2021 11:43 — forked from thomaspoignant/Makefile
My ultimate Makefile for Golang Projects
GOCMD=go
GOTEST=$(GOCMD) test
GOVET=$(GOCMD) vet
BINARY_NAME=example
VERSION?=0.0.0
SERVICE_PORT?=3000
DOCKER_REGISTRY?= #if set it should finished by /
EXPORT_RESULT?=false # for CI please set EXPORT_RESULT to true
GREEN := $(shell tput -Txterm setaf 2)

Conventinal Commit Messages

See how a minor change to your commit message style can make a difference. Examples

Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs

Commit Formats

Default