开发者

Bazaar: Ignoring files locally but not in centralized repository?

开发者 https://www.devze.com 2022-12-18 22:48 出处:网络
We have a centralized d开发者_如何学编程evelopment server, with everyone working from local checkouts. How can we ignore a specific directory only in our local repositories and not in the centralized

We have a centralized d开发者_如何学编程evelopment server, with everyone working from local checkouts. How can we ignore a specific directory only in our local repositories and not in the centralized repository?

Some background information: The project is a Drupal site, and the files directory of this site is always in flux. As we don't want any changes to the local files directory to be committed to the centralized repo, we ignore this directory using .bzrignore. The problem is that this means the files directory on the centralized development server will also be ignored, which is not what we want. We want to get its changes when updating/checking out, but not be able to commit our own changes to the files directory.


At the moment it seems not to be possible to perform such a task directly. It is, however, already added to the wishlist in bzr issue tracker.


For now you can use views to hide them. Just generate a view with just the files you want to keep.

To do this with on my Mac OS X machine I ran the following commands:

find dir1/ dir2/ | sed 's/\(.*\)/"\1"/g' | xargs bzr view --name keep-versioned

All the files in your working copy directory not in dir1 or dir2 will be ignored until you delete the view, like so:

bzr view --delete --name keep-versioned


For global usage you can set pattern in: ~/.bazaar/ignore

I have version Bazaar 2.5.1 and it works.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号