This is a newbie question...
I got this project and I want to use the google.code svn system, but, I do not how... In fact, I am not so used to svn... Here is what I' ve done:
svnadmin create octopy_repo
svn import /home/mrt/python/Qt/octopy file:///home/mrt/octopy_repo -m "Initial import"
Adding (bin) /home/mrt/python/Qt/octopy/octopus.png
Adding /home/mrt/python/Qt/octopy/oct.ui
Adding /home/mrt/python/Qt/octopy/zipi
Adding /home/mrt/python/Qt/octopy/octo.py
Adding /home/mrt/python/Qt/octopy/main.py
Adding /home/mrt/python/Qt/octopy/etc
Adding /home/mrt/python/Qt/octopy/etc/config.list
Committed revision 1.
mkdir octopy_working
svn checkout file:///home/mrt/octopy_repo /home/mrt/octopy_working
cd octopy_working
This is where it get stuck. First, I edit some file, and then:
svn status
M main.py
svn diff
Index: main.py
===================================================================
--- main.py (revision 1)
+++ main.py (working copy)
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
-"""The user interface for our app"""
+"""The user interface for our app some edit"""
import os,sys
import ConfigParser
So, great! It knows that the file main.py is edited, now I want to commit the changes:
svn commit -m "Some Text"
Sending main.py
Transmitting file data .
Committed revision 2.
But, when I look to main.py in /home/mrt/python/Qt/octopy, no changes where done...
Where it sends the changes???? I know that the changes are in "somewhere" but, where????