update (July 1): just for comparison, a co-worker sent me one of those wonderful scripting commands for subversion to add all unknown files:
svn stat -u | awk '/^[?]/ { print $NF }' | xargs svn add
Discoveries and code snippets for the hyper geek. Live from Dallas Fort Worth TX.
$ svn up
U Classes/ClassA.m <-- _awesome_ single letter indicator for
U Classes/AppDelegate.m <-- what happened to the file during the update
U Classes/DynamicSheetDelegate.m
U Classes/AlertDelegate.m
U Classes/SalesTransaction.m
U App.xcodeproj/user.pbxuser
Updated to revision 1028. <-- _short_ summary
$
$ git pull
remote: Counting objects: 58, done. <- Keeps you apprised of comm.
remote: Compressing objects: 100% (48/48), done. <- rather than pauses w/o info
remote: Total 48 (delta 37), reused 0 (delta 0)
Unpacking objects: 100% (48/48), done.
From git://machineB/projectA
f355111..99258fb master -> origin/master <- SHA-1's of from and to
From git://machineB/projectA <- versions on remote repo
* [new tag] aftermemfixes -> aftermemfixes <- New tags on remote repo
Updating f355111..99258fb <- SHA-1's of current to new ver
Fast forward <- on local repo + current op.
Classes/ClassA.m | 25 +-
Classes/AppDelegate.m | 11 +- <- Counters and visual (ascii :)
Classes/DynamicSheetDelegate.m | 2 + <- indicators show amount of
Classes/AlertDelegate.m | 2 + <- change on per-file basis
Classes/SalesTransaction.m | 5 +-
App.xcodeproj/user.pbxuser | 2510 ++++++++++++++++++--------------
7 files changed, 1604 insertions(+), 1176 deletions(-) <- Summary totals
$
# renamed: AllViewController.h -> RootViewController.h
# renamed: AllViewController.m -> RootViewController.m