Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Projects inside External Storage

jernel

Apprentice
Advanced Member
Messages
68
Reaction score
0
Points
26
Hello, baka lang may nakaka-alam or may nagtry na, recently I bought an external SSD (sandisk extreme) ang balak ko kasi sana ilagay ko lahat ng projects ko inside of it, okay naman kapag nag git clone ako pero kapag nag install na ko ng dependencies (npm install or yarn install) napansin ko na medyo matagal siya mag install and ito talaga yung pinaka napansin ko malaki yung storage yung kinakain niya sa external storage compared sa local storage kapag nag iinstall ng dependencies, I am using MacBook pala kaya na-ipost ko na din dito, I am not really sure kung paano siya ayusin or may kailangan ba ko install, im sure din na walang problem sa external storage. So nagtry na nga ako mag install ng dependencies sa external storage and umabot siya ng 150GB yung node_modules which is really weird. Salamat po sa sasagot.
 
How are you transferring the project?
Copying and pasting or using GIT clone?

I suggest the latter and create a branch (instead of using master/main)
then create a shallow clone of your remote using this command:
Bash:
git clone --depth 10 /mnt/you/external/drive/repo.git
 
How are you transferring the project?
Copying and pasting or using GIT clone?

I suggest the latter and create a branch (instead of using master/main)
then create a shallow clone of your remote using this command:
Bash:
git clone --depth 10 /mnt/you/external/drive/repo.git

I use git clone to transfer, although hmmm would that fix the issue I have since I think git clone doesn't have the dependencies installed yet ie node_modules, although I haven't really tried that, I'm just doing git clone then npm install the dependencies. Thanks! I will try that one :)
 
Back
Top Bottom