Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Warning
titlePage Outdated

While the basics of this page are still correct, there are newer resources/tips available on GitHub.  Here's the simplest path:


Note
titleWork in Progress

This page is a work in progress. If you have notes/hints/tips on DSpace development with Git/GitHub, please feel free to suggest their addition, or even add them to this page directly.

...

Code Block
# Make sure you are on your release branch (e.g. dspace-5_x)
git checkout dspace-5_x
# If you just merged to upstream/master, fetch the list of latest revisions from the upstream repo. not needed if you have the commit anywhere in the local repo.
git fetch upstream
# This is the hash of the original commit
git cherry-pick abc123def456
# check that it's correct
git log
# Finally, push from your local repo to the upstream repo branch
git push upstream dspace-5_x

...


Common DSpace Git/GitHub Issues

...