https://github.com/venthur/pyff
OFFICIAL REPOSITORY HAS MOVED TO: https://github.com/bbci/pyff
https://github.com/venthur/pyff
Last synced: about 1 month ago
JSON representation
OFFICIAL REPOSITORY HAS MOVED TO: https://github.com/bbci/pyff
- Host: GitHub
- URL: https://github.com/venthur/pyff
- Owner: venthur
- License: gpl-2.0
- Created: 2009-09-24T08:41:55.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2015-01-30T09:22:33.000Z (over 10 years ago)
- Last Synced: 2025-04-07T05:11:16.177Z (2 months ago)
- Language: Python
- Homepage: http://bbci.de/pyff
- Size: 5.3 MB
- Stars: 14
- Watchers: 4
- Forks: 19
- Open Issues: 0
-
Metadata Files:
- Readme: README-SUBVERSION
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
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..
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.patchThe 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