Exclude some files on svn command line commit (not svn:ignore)

后端 未结 7 593
失恋的感觉
失恋的感觉 2021-01-17 11:50

I\'m developing with many people.

I check out remote repository, get 3 file. After edit, run:

svn status

It shows:

         


        
7条回答
  •  隐瞒了意图╮
    2021-01-17 12:40

    maybe you can use this command.

    svn ci `svn st | grep -e "^[A|M]" | grep -v "test.js" | grep -ve "conf\.js$" | awk '{print $2}' | tr "\\n" " "`
    

提交回复
热议问题