LoginSignup
0
0

More than 5 years have passed since last update.

WPのプラグイン管理でよく使うsvnコマンドの覚書

Posted at

覚書です。
「あのコマンドどこでみたっけ」となった時に自分が見るようです。

ディレクトリの削除

via:https://sousaku-memo.net/php-system/252

composerとpharでライブラリ入れ替えたいときとかに。
updateしないとcommitがこけるときあり。

$ rm -rf vendor/
$ svn status | grep '^!' | awk '{print $2}' | xargs svn delete
$ svn update
$ svn commit -m "remove vendor"
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0