You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# cleanup stale remote branches
git remote prune origin
# rebase development branch onto local feature branch (usually prior to merging feature branch onto development branch)
git checkout branch_name
git rebase development
# merge local feature branch onto development without fast-forwarding
git checkout development
git merge --no-ff branch_name