WIKI SECTION LAYOUT

A place to store random, seemingly, unconnected notes. Always working on interlinking notes together, so there will be constant updates. Don’t expect to find the same article next time you come back.

  • Unable to resolve reference to m-qg84nh28 from wiki/_index.mdKubernetes
  • Unable to resolve reference to m-bu9bq9z8 from wiki/_index.mdVim
  • Unable to resolve reference to m-bgommmb3 from wiki/_index.mdGolang
Wiki Posts

Showing all previous posts in section

  • Apr 27, 2017 Github Awesome
    scan through this awesome list!! https://github.com/sindresorhus/awesome https://gitlab.com/groups/pages?%5Fga=1.52981480.1147043140.1493223695
  • Oct 13, 2016 code-snippets
    plink.exe tunnel-home -N -ssh -2 -P 2223 -l root -C -i C:\.ssh\MyEnTunnel\keyfile.ppk -v Markdown # ![]() allows you to upload images to ghost Python # Useful design patterns for Python: Link GIT # Some help snippet from gist ## Workflow - Helpful site for the GIT workflow: here - Successful git branching model: here ## Settings - Keep branch history from flatten, use --no-ff while merge - or set git config --global merge.
  • Sep 30, 2016 Git Workflow
    Merging vs. Rebasing # The two essentially do the same thing. the difference is that rebase makes the history linear. This is good when you are developing on your own branches, but not good when we you working on public branch, Unable to resolve reference to #pitfalls from wiki/git-workflow.mdmore here To merge or rebase master into a feature git checkout feature git merge master # or.. a oneliner git merge master feature # say it in your head, git merge master into feature Rewriting history # keeping a clean history is important This code snippets will allow you to interactively update commits for a particular branch.