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
peterdietz edited this page Jan 13, 2012
·
1 revision
At one point in time, no modifications had been made to the DSpace repository to improve its interaction with Git, only SVN was supported. So you'll need to create a .gitignore file that will ignore certain file name patterns from version control. Files to ignore are the compiled output directories called target.
echo "target/" > .gitignore
If you run into an error while trying to recompile with 'mvn package' that dspace/modules/jspui/src/main/webapp directory does not exist, then you have to create that directory. This is due to Git's inability to track empty directories. The DSpace/Git repository has since fixed the interaction with this, but if this affects you, then these are the steps to fix this.