Skip to content

Git References

alawvt edited this page Dec 13, 2018 · 1 revision

To merge part of a branch for example part of dspace_5-x, https://stackoverflow.com/questions/449541/how-to-selectively-merge-or-pick-changes-from-another-branch-in-git

git checkout feature
git checkout -b temp
git rebase -i master
... (after rebase)
git checkout master
git pull . temp
git branch -d temp

Clone this wiki locally