Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ietf link #51

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ a.k.a the Xcode project file, and make it unique and same on any
machine.

As you may know, the UUID generated by Xcode (a.k.a
`rfc4122 <http://www.ietf.org/rfc/rfc4122.txt>`__) in the file is not
`rfc4122 <https://tools.ietf.org/rfc/rfc4122.txt>`__) in the file is not
unique for the same added file( or other entries like groups,build
phases,etc.) on different machines, which makes it a developer's
nightmare to merge and resolve conflicts in ``project.pbxproj``.
Expand Down Expand Up @@ -53,7 +53,7 @@ usage.
Installation
------------
- install from `PyPi <https://pypi.python.org/pypi/xUnique>`__:

.. code-block:: bash

$ pip install xUnique
Expand Down Expand Up @@ -112,7 +112,7 @@ Xcode "build post-action"
#. choose ``New Run Script Action``
#. choose your selected scheme name in ``Provide build settings from``
#. input commands below:

.. code-block:: bash

$ xunique "${PROJECT_FILE_PATH}/project.pbxproj"
Expand All @@ -126,10 +126,10 @@ Xcode "build post-action"
CocoaPods users
~~~~~~~~~~~~~~~

If your project uses CocoaPods AND added ``Pods`` directory to source control, you may also need to uniquify ``Pods.xcodeproj``:
If your project uses CocoaPods AND added ``Pods`` directory to source control, you may also need to uniquify ``Pods.xcodeproj``:

- Xcode "build post-action" : add extra command below

.. code-block:: bash

$ xunique "${PODS_ROOT}/Pods.xcodeproj"
Expand Down