Skip to content

Instantly share code, notes, and snippets.

View alecokas's full-sized avatar

Aleco Kastanos alecokas

View GitHub Profile
@santisbon
santisbon / Update-branch.md
Last active March 21, 2024 15:50
Deploying from #Git branches adds flexibility. Bring your feature branch up to date with master and deploy it to make sure everything works. If everything looks good the branch can be merged. Otherwise, you can deploy your master branch to return production to its stable state.

Updating a feature branch

First we'll update your local master branch. Go to your local project and check out the branch you want to merge into (your local master branch)

$ git checkout master

Fetch the remote, bringing the branches and their commits from the remote repository. You can use the -p, --prune option to delete any remote-tracking references that no longer exist in the remote. Commits to master will be stored in a local branch, remotes/origin/master.

@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active May 1, 2024 03:34
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@maruta
maruta / gist:1035254
Created June 20, 2011 07:17
SYM2TF: a matlab function which converts symbolic math rationals to transfer function object
function [ tfobj ] = sym2tf( symobj, Ts)
% SYM2TF convert symbolic math rationals to transfer function
if isnumeric(symobj)
tfobj=symobj;
return;
end
[n,d]=numden(symobj);
num=sym2poly(n);