Created
June 28, 2013 07:27
-
-
Save ksomemo/5883061 to your computer and use it in GitHub Desktop.
svnで対象をsymbolic linkに変更した際のcommit方法
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
touch link | |
svn add link | |
svn commit -m "add link" | |
mv link link.org | |
ln -s /path/to/dist link | |
svn commit link | |
# svn: コミットに失敗しました (詳しい理由は以下のとおりです): | |
# svn: エントリ '/path/to/symbolic/link' が特殊なステータスを突然変更しました | |
svn delete link | |
svn commit -m "delete link" | |
ln -s /path/to/dist link | |
svn add link | |
svn commit -m "add link(symbolic link)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment