Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Timo Petmanson
Estnltk
Commits
7a8e20b8
Commit
7a8e20b8
authored
Sep 14, 2015
by
Timo Petmanson
Browse files
Added some information to devel documentation
parent
02646f0c
Changes
1
Hide whitespace changes
Inline
Side-by-side
docs/tutorials/devel.rst
View file @
7a8e20b8
...
...
@@ -4,19 +4,49 @@ Estnltk developer guide
This document is for everyone who is working on Estnltk project (or wishes to work), but do not know how to get started.
Version control and branches
============================
We have three repositories where we store Estnltk code: you should push/pull every time from all of them
to make them synced.
First, modify your ``.git/setup`` configuration to look like following::
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "github"]
url = git@github.com:estnltk/estnltk.git
fetch = +refs/heads/*:refs/remotes/github/*
[remote "ut"]
url = git@estnltk.cs.ut.ee:timo/estnltk.git
fetch = +refs/heads/*:refs/remotes/ut/*
[remote "keeleressursid"]
url = git@gitlab.keeleressursid.ee:timo-petmanson/estnltk.git
fetch = +refs/heads/*:refs/remotes/keeleressursid/*
[remote "origin"]
url = git@github.com:estnltk/estnltk.git
url = git@estnltk.cs.ut.ee:timo/estnltk.git
url = git@gitlab.keeleressursid.ee:timo-petmanson/estnltk.git
[branch "master"]
remote = origin
merge = refs/heads/master
[branch "devel"]
remote = origin
merge = refs/heads/devel
Second, use commands
git push origin master
git pull origin master
to perform pulls and pushes to both repositories without no extra hassel.
Third, your're done! ;)
Setting up development environment
==================================
Unit testing
============
Writing documentation
=====================
...
...
@@ -61,4 +91,4 @@ Then, create a subfolder with the appropriate estnltk version and copy the new d
Creating releases
=================
TODO
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment