0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

勉強メモ20_SVNの勉強(つどつど更新)

Last updated at Posted at 2021-03-29

1 svn diffコマンドの比較結果が見にくい場合、比較結果をサクラエディタに貼り付け、検索の以下↓↓正規表現を使って見やすくする

サクラエディタで以下、正規表現を使って検索
正規表現:^[+-][^+-].*
または  ^[^+-].*
image.png

2 SVNリポジトリーに登録されているファイル一覧から対象ファイルをsvn deleteでファイル削除し、ツリーを表示する

$ cd /home/rinchome/
$ cat SvnDeleteFileList.txt
/usr/paypayApuri/controller/AAACont.java
/usr/paypayApuri/logic/AAALogic.java

$ cd /usr/paypayApuri/
$ cat /home/rinchome/SvnDeleteFileList.txt | xargs svn delete
$ svn commit -m '削除コミット実施'
$ svnlook tree /usr/paypayApuri/

3 ログを表示とか差分を表示とかよく使う機能は、コンテキストメニューに追加しておく

SVNをインストールすると、マウスの右クリックで以下のように「メインコンテキスト」と「サブメニュー」と「メニュー」の構成になっている
image.png
以下のように設定のコンテキストメニューから、ログ表示とか変更をチェックとかのチェックボックスにチェックをいれる
image.png
以下のように追加されるのを確認済み
image.png

     

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?