Infrastructure/First Steps with your Contributor Account: Difference between revisions

From KDE Community Wiki
m (→‎Links: fix link)
(Replace "Contributor account" with "Developer account" for consistency)
 
(19 intermediate revisions by 15 users not shown)
Line 1: Line 1:
{{improve}}
* This page is now here: [[Infrastructure/Get_a_Contributor_Account | Get a Developer account]].  
This tutorial is about what to do when you are a fresh owner of a new SVN account for KDE.
* To now what to do with an account, see: [[Get_Involved#Ways_to_contribute | How to contribute]]
 
== Notations ==
* ''SVN'' is used to describe a SVN server, mostly KDE's or the KDE's anonymous SVN servers.
* The low case word ''svn'' is used to describe the program named svn, which the user can use to access SVN.
* By ''username'' the name of your KDE SVN account is meant (also known as ''login'').
 
== Preliminary ==
 
This tutorial assumes that you have [[Contribute/Get a SVN Account|applied for a KDE SVN account as described here]] and that you have received a positive answer with the information associated with your new account.
 
== Read First! ==
 
Now you have a KDE SVN account.
 
Please note that the answer email will have an explanation about how to use the account. (This explanation is also the file [http://websvn.kde.org/trunk/KDE/kde-common/svn/svn_instructions.txt?view=markup kde-common/svn/svn_instructions.txt].) It contains also topics not discussed here. So please read this email.
 
In case of conflicting instructions, please follow those of the '''email''', not the ones of this tutorial.
 
== Changed URLs ==
 
Until now, you have worked with one of the anonymous SVN servers. Now that you have a KDE SVN account, you will not use that anonymous server anymore. Therefore the base URL to the SVN server changes for you.
 
For the standard anonymous SVN of KDE, it was: {{path|svn://anonsvn.kde.org}} assuming that you have not used an anonymous SVN mirror. If you have used another anonymous SVN server for KDE, then please use its URL instead.
 
{{Note|if you are unsure which SVN anonymous server you have used, use the <tt>svn info</tt> command to get the server URL.}}
 
Now the new base URL for your access to the KDE SVN server depends on which way you have chosen to access it:
* by HTTPS, it becomes:
https://[email protected]/home/kde
* by SSH, it becomes
svn+ssh://[email protected]/home/kde
where <tt>username</tt> is the name that was given to your KDE SVN account.
 
== Changing The URLs of the Modules of Your Local SVN Copy ==
 
To use the KDE SVN server instead of one of the anonymous SVN servers, you need to tell each module of your local SVN copy that you want to change the server. SVN does this with the command
svn switch --relocate
 
Assuming that you are processing the kdelibs module, you have to use:
* for HTTPS
svn switch --relocate svn://anonsvn.kde.org/home/kde/trunk/KDE/kdelibs https://svn.kde.org/home/kde/trunk/KDE/kdelibs --username yourname
* for SSH:
svn switch --relocate svn://anonsvn.kde.org/home/kde/trunk/KDE/kdelibs svn+ssh://[email protected]/home/kde/trunk/KDE/kdelibs
 
For other modules than kdelibs (or for branches or for tags), you have to change the relative module path; similarly, if you used another anonymous server.
 
Be careful on what URLs you type, as SVN will only replace the exact old URL by the exact new URL. So if you mistype one of the URLs, it will not work later. (If you have already fallen into this pitfall, it is not a problem, just use relocate again to replace the wrong URL by the right one.)
 
If you connect by HTTPS, as the first relocation will be the first contact to the KDE SVN server with your new SVN account, you will be asked to confirm the SSL certificate of the server and then you will be asked to authentificate yourself.
 
The fingerprint for the SSL certificate can be found in the document [http://developer.kde.org/documentation/tutorials/subversion/#structure Using Subversion with KDE]. (Normally, the SHA1 fingerprint is used.)
 
(TODO: what happens in the case of svn+ssh ?)
 
A quick troubleshooting note: if you cannot access the server with your new account made for accessing by HTTPS, you can try to give the HTTPS path in Konqueror. You will not be able to do much with Konqueror, but at least you must be able to login. That helps to know if the problem is more the server or your account or if the problem is svn. If you cannot login at all and you cannot find why, ask the [mailto:[email protected] Sysadmins] for help.
 
== First Test ==
 
The following steps are described using the command line tool <tt>svn</tt>. Personally, I find it better to start with it, as you know immediately where the problems are. Of course, after you have made your first test, you may use whatever tool that you prefer.
 
Then you should be ready to start. The best test is to try to update a small directory. So change to a (small) directory of your local copy of KDE and type: <code bash>svn update</code>
 
Now you can use the SVN commands on KDE's main SVN.
 
{{note|If you know CVS, you will perhaps wonder that there is no <tt>cvs login</tt>, Subversion has chosen not to have such a way to login. The login is done at the first connection, where authentication is needed.}}
 
== SVN Account Password ==
 
This section is only for accessing KDE SVN by HTTPS. For SSH, it is SSH that secures the connection, so normal SSH habits and procedures apply.
 
The password is automatically transmitted to the SVN server by each use of the SVN program when accessing by HTTPS.
 
''Please note:'' the password is stored somewhere in the directory {{path|~/.subversion/auth}}. So please check that these files cannot be read by third persons, as the password is '''unencoded'''.
 
In case that someone has gained access to your password (or if you have a doubt) please email [mailto:[email protected] KDE's Sysadmins] to change your password or at least to get it disabled temporarily.
 
== Default Editor ==
 
This section is only useful if you plan to use the <tt>svn</tt> program. If you always plan to use a GUI front-end, you can skip this section.
 
When committing, <tt>svn</tt> wants some text for commenting the commit. You can either specify it directly with the <tt>-m</tt> parameter or by a file with <tt>-F</tt> or <tt>--file</tt>. If you do neither of both, <tt>svn</tt> will run an editor to ask for a comment.
 
* TODO: improve this section
* TODO: better ask the user to modify the svn configuration files?
 
This editor is taken either from the svn configuration files or if not defined there from the environment variables: first <tt>$SVN_EDITOR</tt>, then <tt>$VISUAL</tt>, then <tt>$EDITOR</tt> depending which one is defined.
 
So maybe you should check your environment variables:
<code bash>
echo $SVN_EDITOR
echo $VISUAL
echo $EDITOR
</code>
 
Check that their settings suit you for your work with svn. If they do not suit you, check your file {{path|~/.bashrc}} and add something like:
<code bash>export SVN_EDITOR=mcedit</code>
Here it sets mcedit, replace it with your favorite editor. Of course you can set <tt>$EDITOR</tt> instead if you want to change the default editor for you.
 
Be careful that if you do not set a command line editor but one that needs X-Window, you will need to run svn always in a X-Window terminal. It might suit you, it might not. Your choice!
 
== Subversion Configuration ==
 
For proper of ''svn status'' and ''svn diff'' on KDE sources, you might want to follow the instructions from [http://developer.kde.org/documentation/other/developer-faq.html#q1.5.2 the developer FAQ] for setting up {{path|~/.subversion/config}}.
 
== Committing ==
 
Now a few words about how to commit.
 
First be sure that the code that you want to commit is right. You might perhaps send the patch to the relevant mailing list or to the relevant developer if you know who he is.
 
Also when committing, please give a useful message with the commit. Think about what you would like to find in, say, two years. (One day, you will probably find out that meaningless commit entries like "Fix" or "Here too" are going to drive you crazy when you have to debug a problem.)
 
Good code is not always only about questions like: "Does the code compile?" The code must also fit in what is planned. For example if a new code fixes just one little bug but the maintainer of the code is currently doing a re-write, he will perhaps not be pleased that something has been committed, because he will have to fix all conflicts between the newly committed code and his new code.
 
So the best is to communicate (if possible early) to avoid any surprise. A surprised developer is highly at risk of giving a rude answer or at least not a pleasant answer. This is avoidable by communication. Of course, a developer might ask to leave the code alone. Please respect that! (Of course, it does not mean that you should not argue.)
 
== Commit-Digest ==
 
The [http://www.commit-digest.org KDE Commit-Digest] is a weekly overview of the commits to KDE's subversion server. Now that you have a SVN account, you will probably see your own name in there soon!
 
The digest features a small statistics section. To improve the accuracy of those, you should add some information, like age or country, about yourself, which you can do [http://commit-digest.org/data here].
 
== Links ==
 
; Subversion
: [[Getting_Started/Sources/Using_Subversion_with_KDE|Using Subversion with KDE]]
 
; I18N/L10N
: [http://developer.kde.org/documentation/library/kdeqt/kde3arch/kde-i18n-howto.html KDE Programmer's i18n howto]

Latest revision as of 13:47, 21 April 2016