Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN organization
websites
Commits
52a3dab4
Commit
52a3dab4
authored
Mar 16, 2004
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cosmetics
parent
2affec24
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
trunk/developers.videolan.org/svn.html
trunk/developers.videolan.org/svn.html
+15
-15
No files found.
trunk/developers.videolan.org/svn.html
View file @
52a3dab4
...
...
@@ -80,30 +80,30 @@ of the trunk at different times.</p>
<p>
Never download a full svn tree! It would download several hundreds of
megabytes. Instead, only get the trunk directory, like that:
<
cod
e>
<
pr
e>
$ svn co svn://svn.videolan.org/trunk vlc-trunk
</
cod
e>
</
pr
e>
If you need a specific branch or tag, (eg. branch 0.2), use this:
<
cod
e>
<
pr
e>
$ svn co svn://svn.videolan.org/branches/0.2 vlc-0.2
</
cod
e>
</
pr
e>
If you need to know which branches are available, use "svn ls":
<
cod
e>
<
pr
e>
$ svn ls svn://svn.videolan.org/branches/
0.2
0.2.92
0.4.1
$
</
cod
e>
</
pr
e>
Note that you only need to authenticate yourself when you want to commit something. You do not need to enter a password when you checkout the sources.
</p>
<p><b>
Moving files
</b></p>
<p>
No longer create new files from scratch when moving files! Use "svn mv":
<
cod
e>
<
pr
e>
$ svn mv file1 file2
</
cod
e>
</
pr
e>
It also works for entire directories.
</p>
...
...
@@ -111,13 +111,13 @@ Note that you only need to authenticate yourself when you want to commit somethi
<p>
Do not create a new file from scratch! Instead, copy the old file
using "svn cp", remove the old file and modify both newly created files:
<
cod
e>
<
pr
e>
$ svn cp old new1
$ svn cp old new2
$ svn delete old
[edit new1 and new2]
$ svn commit
</
cod
e></p>
</
pr
e></p>
<p><b>
Getting information about locally modified files
</b></p>
<p>
...
...
@@ -134,17 +134,17 @@ want to show your local modifications.
<p>
There is no filesystem equivalent to .cvsignore. Instead, metadata
are used. To edit the ignore list for a given directory, use this:
<
cod
e>
<
pr
e>
$ svn propedit svn:ignore mydirectory
</
cod
e></p>
</
pr
e></p>
<p><b>
$Id:
</b
</p
>
<p><b>
$Id:
</b
>
</p>
<p>
$Id is no longer automatically taken in account; instead, it has to
be activated in a per-file basis using properties:
<
cod
e>
<
pr
e>
$ svn propedit svn:keywords myfile
</
cod
e>
</
pr
e>
Just add "Id" to the list of properties.
</p>
Write
Preview
Markdown
is supported
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