-
Notifications
You must be signed in to change notification settings - Fork 47
Integrating a plug in
dschadow edited this page Nov 15, 2014
·
16 revisions
#Integrating a plug-in into the JCrypTool repository
The following task has to be executed by a JCrypTool Core or Crypto member with write access to our repositories core and crypto. As a plug-in developer, you do not have sufficient rights to do this!
- Add the other repository
git remote add -f [remote name] [remote url]
- Check for success, this list must contain the new remote repository
git remote
- Merge
git merge -s ours --no-commit [remote name]/master
git read-tree --prefix= -u [remote name]/master
git commit -m "message"
git push
git remote remove [remote name]
Need help? Please visit the public JCT Chatroom or open a new Issue and ask your question. We'll be happy to assist you!