Aktualisierung der tags im svn

Wenn ich svn copy einen Schnappschuss von einem Teil eines repository, wie kann ich update, snapshot?

Anwendungsfall:

myrepo/
  trunk/
    src/
      something.c
      something.h
  tags/
  branches/

mkdir branches/user1/trusted

svn add branches/user1/

svn copy trunk/src branches/user1/trusted

myrepo/
  trunk/
    src/
      something.c
      something.h
  tags/
  branches/
    user1/
      trusted/
        src/
          something.c
          something.h

- - - - commits und änderungen geschehen in trunk/src/something.* hier ---

myrepo/
  trunk/
    src/
      neatstuff.c           //new file
      something.c           //modified
      big_ugly_include.h    //was something.h, it got renamed
  tags/
  branches/
    user1/
      trusted/
        src/
          something.c
          something.h

Nun will ich die Zweige/user1/trusted/src zu sein, die neueste version des trunk/src. Wie kann ich dies tun?

InformationsquelleAutor Jason S | 2009-10-19
Schreibe einen Kommentar