Git: Removeomit directory from local repo only - Stack Overflow

admin2025-04-04  0

I have a large-ish project using Git. I do, for instance, most development on Mac, including, so my Mac's local repo contains everything on the project. Let's say it looks something like this:

project/
  src/
  mobile/

I don't, however, do any mobile on, say, Linux. So all I want there is:

project/
  src/

I don't want to pull down the whole mobile directory when it's never needed there.

Now I know I've done this before, but I'm not having difficulty figuring out how, and I see references to both sparse and partial clones. I imagine as with most things Git this is relatively straightforward in the end, but I'm not sure how to go about it.

I have a large-ish project using Git. I do, for instance, most development on Mac, including, so my Mac's local repo contains everything on the project. Let's say it looks something like this:

project/
  src/
  mobile/

I don't, however, do any mobile on, say, Linux. So all I want there is:

project/
  src/

I don't want to pull down the whole mobile directory when it's never needed there.

Now I know I've done this before, but I'm not having difficulty figuring out how, and I see references to both sparse and partial clones. I imagine as with most things Git this is relatively straightforward in the end, but I'm not sure how to go about it.

Share Improve this question asked 1 hour ago KT_KT_ 1,08712 silver badges28 bronze badges 1
  • This question is similar to: How do I clone a subdirectory only of a Git repository?. If you believe it’s different, please edit the question, make it clear how it’s different and/or how the answers on that question are not helpful for your problem. – Chris Dodd Commented 1 hour ago
Add a comment  | 

1 Answer 1

Reset to default 0
  1. Clone the repository without checking anything out:
git clone --filter=blob:none --no-checkout <url-of-your-repo> project
cd project
  1. Enable Sparse checkout (--cone mode is a simple pattern style which I recommend to you):
git sparse-checkout init --cone
  1. Now set the directories you want (src/ in your case):
git sparse-checkout set src/

This tells Git only to check out src/ and not /mobile too.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743736365a216863.html

最新回复(0)