pobi@pobi:~/Pulpit/fat1/trunk/hello$ cd Pulpit bash: cd: Pulpit: Nie ma takiego pliku ani katalogu pobi@pobi:~/Pulpit/fat1/trunk/hello$ cd .. pobi@pobi:~/Pulpit/fat1/trunk$ cd .. pobi@pobi:~/Pulpit/fat1$ cd .. pobi@pobi:~/Pulpit$ svn import --username test2 -m "Startowy import katalogu grupy." atalog https://serce.ics.p.lodz.pl/svn/test/atalog Dodawanie atalog/branches Dodawanie atalog/devteam.txt Dodawanie atalog/tags Dodawanie atalog/trunk Committing transaction... Zatwierdzona wersja 4317. pobi@pobi:~/Pulpit$ svn co --username test2 https://serce.ics.p.lodz.pl/svn/test/atalog atalog1 A atalog1/devteam.txt A atalog1/trunk A atalog1/branches A atalog1/tags Pobrano wersję 4317. pobi@pobi:~/Pulpit$ cd atalog1 pobi@pobi:~/Pulpit/atalog1$ cd trunk pobi@pobi:~/Pulpit/atalog1/trunk$ mkdir hello pobi@pobi:~/Pulpit/atalog1/trunk$ cd hello pobi@pobi:~/Pulpit/atalog1/trunk/hello$ touch hello.cpp pobi@pobi:~/Pulpit/atalog1/trunk/hello$ nano hello.cpp pobi@pobi:~/Pulpit/atalog1/trunk/hello$ svn add hello --depth empty svn: warning: W155010: Nie znaleziono '/home/pobi/Pulpit/atalog1/trunk/hello/hello' svn: E200009: Could not add all targets because some targets don't exist svn: E200009: Niedozwolony obiekt dla podanej operacji pobi@pobi:~/Pulpit/atalog1/trunk/hello$ svn add hello --depth empty svn: warning: W155010: Nie znaleziono '/home/pobi/Pulpit/atalog1/trunk/hello/hello' svn: E200009: Could not add all targets because some targets don't exist svn: E200009: Niedozwolony obiekt dla podanej operacji pobi@pobi:~/Pulpit/atalog1/trunk/hello$ svn add hello --depth empty svn: warning: W155010: Nie znaleziono '/home/pobi/Pulpit/atalog1/trunk/hello/hello' svn: E200009: Could not add all targets because some targets don't exist svn: E200009: Niedozwolony obiekt dla podanej operacji pobi@pobi:~/Pulpit/atalog1/trunk/hello$ cd .. pobi@pobi:~/Pulpit/atalog1/trunk$ svn add hello --depth empty A hello pobi@pobi:~/Pulpit/atalog1/trunk$ svn add hello/hello.cpp A hello/hello.cpp pobi@pobi:~/Pulpit/atalog1/trunk$ svn commit Nie podano opisu zmian. Przerwij (a), kontynuuj (c), edytuj (e): c Dodawanie hello Dodawanie hello/hello.cpp Przesyłanie treści pliku.done Committing transaction... Zatwierdzona wersja 4318. pobi@pobi:~/Pulpit/atalog1/trunk$ g++ hello/hello.cpp pobi@pobi:~/Pulpit/atalog1/trunk$ ./hello/a.out bash: ./hello/a.out: Nie ma takiego pliku ani katalogu pobi@pobi:~/Pulpit/atalog1/trunk$ ./ hello/a.out bash: ./: Jest katalogiem pobi@pobi:~/Pulpit/atalog1/trunk$ ./hello/a.out bash: ./hello/a.out: Nie ma takiego pliku ani katalogu pobi@pobi:~/Pulpit/atalog1/trunk$ ./hello/a.out bash: ./hello/a.out: Nie ma takiego pliku ani katalogu pobi@pobi:~/Pulpit/atalog1/trunk$ cd hello pobi@pobi:~/Pulpit/atalog1/trunk/hello$ g++ hello.cpp pobi@pobi:~/Pulpit/atalog1/trunk/hello$ ./a.out Hello World! pobi@pobi:~/Pulpit/atalog1/trunk/hello$ set EDITOR=notepad.exe pobi@pobi:~/Pulpit/atalog1/trunk/hello$ svn propedit svn:ignore hello svn: E200005: '/home/pobi/Pulpit/atalog1/trunk/hello/hello' nie podlega zarządzaniu wersjami pobi@pobi:~/Pulpit/atalog1/trunk/hello$ cd .. pobi@pobi:~/Pulpit/atalog1/trunk$ svn propedit svn:ignore hello Bez zmian atrybutu svn:ignore dla 'hello' pobi@pobi:~/Pulpit/atalog1/trunk$ svn propedit svn: E205001: Try 'svn help propedit' for more information svn: E205001: Zbyt mało parametrów pobi@pobi:~/Pulpit/atalog1/trunk$ svn propedit svn:ignore svn: E205001: Try 'svn help propedit' for more information svn: E205001: Argument podający obiekt docelowy jest wymagany pobi@pobi:~/Pulpit/atalog1/trunk$ svn propedit svn:ignore hello Ustawiona nowa wartość atrybutu 'svn:ignore' dla 'hello' pobi@pobi:~/Pulpit/atalog1/trunk$ svn status hello M hello ? hello/a.out pobi@pobi:~/Pulpit/atalog1/trunk$ svn help status | more status (stat, st): Print the status of working copy files and directories. usage: status [PATH...] With no args, print only locally modified items (no network access). With -q, print only summary information about locally modified items. With -u, add working revision and server out-of-date information. With -v, print full revision information on every item. The first seven columns in the output are each one character wide: First column: Says if item was added, deleted, or otherwise changed ' ' no modifications 'A' Added 'C' Conflicted 'D' Deleted 'I' Ignored 'M' Modified 'R' Replaced 'X' an unversioned directory created by an externals definition '?' item is not under version control '!' item is missing (removed by non-svn command) or incomplete '~' versioned item obstructed by some item of a different kind Second column: Modifications of a file's or directory's properties ' ' no modifications 'C' Conflicted 'M' Modified Third column: Whether the working copy is locked for writing by pobi@pobi:~/Pulpit/atalog1/trunk$ svn commit Nie podano opisu zmian. Przerwij (a), kontynuuj (c), edytuj (e): a pobi@pobi:~/Pulpit/atalog1/trunk$ svn ci -m "Dodany program Halko" Wysyłanie hello Committing transaction... Zatwierdzona wersja 4319. pobi@pobi:~/Pulpit/atalog1/trunk$ svn commit pobi@pobi:~/Pulpit/atalog1/trunk$ svn up Updating '.': W wersji 4319. pobi@pobi:~/Pulpit/atalog1/trunk$ cd hello pobi@pobi:~/Pulpit/atalog1/trunk/hello$ nano hello.cpp pobi@pobi:~/Pulpit/atalog1/trunk/hello$ g++ hello.cpp pobi@pobi:~/Pulpit/atalog1/trunk/hello$ ./a.out Halko! pobi@pobi:~/Pulpit/atalog1/trunk/hello$ svn commit Nie podano opisu zmian. Przerwij (a), kontynuuj (c), edytuj (e): c Wysyłanie hello.cpp Przesyłanie treści pliku.done Committing transaction... Zatwierdzona wersja 4320. pobi@pobi:~/Pulpit/atalog1/trunk/hello$ svn up Updating '.': W wersji 4320. pobi@pobi:~/Pulpit/atalog1/trunk/hello$ cd .. pobi@pobi:~/Pulpit/atalog1/trunk$ cd .. pobi@pobi:~/Pulpit/atalog1$ svn up Updating '.': W wersji 4320. pobi@pobi:~/Pulpit/atalog1$ svn commit Wysyłanie trunk/hello/hello.cpp Przesyłanie treści pliku.done Committing transaction... Zatwierdzona wersja 4321. pobi@pobi:~/Pulpit/atalog1$ svn copy https://serce.ics.p.lodz.pl/svn/test/atalog/trunk/hello https://serce.ics.p.lodz.pl/svn/test/atalog/tags/hello-1.0 -m "Wersja 1.0 programu Cogito ergo sum" Committing transaction... Zatwierdzona wersja 4322. pobi@pobi:~/Pulpit/atalog1$ svn up Updating '.': A tags/hello-1.0 A tags/hello-1.0/hello.cpp Uaktualniono do wersji 4322. pobi@pobi:~/Pulpit/atalog1$ svn copy https://serce.ics.p.lodz.pl/svn/test/proba/trunk/hello https://serce.ics.p.lodz.pl/svn/test/proba/branches/hello-dev -m "Wersja rozwojowa programu Cogito ergo sum" svn: E160020: Path '/proba/branches/hello-dev/hello' already exists pobi@pobi:~/Pulpit/atalog1$ svn copy https://serce.ics.p.lodz.pl/svn/test/proba/trunk/hello https://serce.ics.p.lodz.pl/svn/test/proba/branches/hello-dev -m "Wersja rozwojowa programu Cogito ergo sum" svn: E160020: Path '/proba/branches/hello-dev/hello' already exists pobi@pobi:~/Pulpit/atalog1$ svn copy https://serce.ics.p.lodz.pl/svn/test/proba/trunk/hello https://serce.ics.p.lodz.pl/svn/test/proba/branches/hello-dev -m "Wersja rozwojowa programu Cogito ergo sum" svn: E160020: Path '/proba/branches/hello-dev/hello' already exists pobi@pobi:~/Pulpit/atalog1$ svn copy https://serce.ics.p.lodz.pl/svn/test/atalog/trunk/hello https://serce.ics.p.lodz.pl/svn/test/atalog/branches/hello-dev -m "Wersja rozwojowa programu Cogito ergo sum" Committing transaction... Zatwierdzona wersja 4323. pobi@pobi:~/Pulpit/atalog1$ svn up Updating '.': A branches/hello-dev A branches/hello-dev/hello.cpp Uaktualniono do wersji 4323.