-
Notifications
You must be signed in to change notification settings - Fork 19
/
README-SUBVERSION
50 lines (31 loc) · 1.09 KB
/
README-SUBVERSION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Pyff has moved from SVN to GIT!
===============================
The old googlecode repository is no longer in use. The new repository is
http://github.com/venthur/pyff
You can still use SVN in read-only mode with the git repository if you must,
but I encourage you to use git instead!
http://bbci.de/pyff
How to use SVN with the git repository:
=======================================
Github also support limited support for accessing the GIT repository with SVN:
https://github.com/blog/966-improved-subversion-client-support
Do the initial checkout:
svn checkout https://github.com/venthur/pyff/trunk pyff
Basic work cycle:
# update your repository
svn update
# your actual work..
<edit files>
svn add
svn delete
svn copy
svn move
# examine your changes
svn status
svn diff
svn revert
# create a patch and send it to me
svn diff > my-changes.patch
The last step is necessary since you cannot commit changes into the git
repository. So you collect all the changes in one file and send it to me.
-- 2011-11-17 Bastian Venthur <bastian.venthur@tu-berlin.de>