Xcode Script Menu and P4

Here is another way that I am able to check out a file using the Xcode Script Menu and a keyboard hot key: #!/bin/sh # This shell script checks out the current file from Perforce # Get the file’s path components FULL_FILE_PATH=”%%%{PBXFilePath}%%%” SRC_FILE=${FULL_FILE_PATH##*/} FILE_PATH=${FULL_FILE_PATH%/*} # This line brings in my settings so that Perforce knows … Read more

Creating a Tag with Subversion

If you have the need to create a tag from your current source code, you can use the copy command from the shell of your preference: $ svn copy http://svn.example.com/repos/MineMineItsMine/trunk http://svn.example.com/repos/MineMineItsMine/tags/release-2.0 -m “Creating 2.0 release of the ‘MineMineItsMine’ project.”