-
Hi! I'm making my own changes to detectron2 and want to use git to track the changes as usual, however I'm a bit confused on how to use this repo. Currently:
However, git won't track the changes I made to the local install version, i.e., files under the symlink. Also, even if I keep the original So, I wonder what's the correct way of using this repo, if I want to 1) change the internals, say, under Only solution I can think of right now is: make changes to the immediate folders, which can be tracked by git, and build/install locally each time a change is made so it goes to the Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This might sound silly but I just realized that if I go with local build install in the first place instead of pre-built install, then the files that got imported at runtime are just ones in the git repo (due to Problem solved! |
Beta Was this translation helpful? Give feedback.
This might sound silly but I just realized that if I go with local build install in the first place instead of pre-built install, then the files that got imported at runtime are just ones in the git repo (due to
-e detectron2
option); only pre-built install goes tosite-packages
.Problem solved!