# Contributing to mdccrn Contributions are very welcome. Two-space identation and thorough commenting is preferred. ## Workflow ### How to create the change $ git checkout -b my-feature ... modify code .... $ git add $ git commit -m “my feature is this” ... or, if you're lazy ... $ git commit -a -m "my feature is this" ... then fetch changes from master since we branched, and re-apply ours on top... $ git fetch $ git rebase master ... Also fine to merge here instead of rebase (but rebasing is better because makes it easier for others!). Resolve conflicts (if any) and add them ... $ git add $ git rebase --continue ... # push my branch back to the server $ git push origin my-feature At this point you can create a merge request. ### How i merge the change $ git fetch ... list branches $ git branch -a ... bring a branch local $ git branch --track my-feature origin/my-feature $ git checkout master $ git merge my-feature ... resolve conflicts and look around ... $ git push ... delete branch (and remote branch) when done $ git branch -d my-feature $ git push origin :my-feature ### Other useful commands To remove remote branches from your list after they have been deleted by other people $ git remote prune origin