Pull structured files in a local repository

So, I basically reproduced this image below from 3 different ambients:

When I push my data from local machine 1 to storage, the data is stored in hash.

My problem is: How can I acess the structured data created from local machine 1 to local machine 2 with the remote being the intermediary?

English is not my maternal language, so I’m sorry for any erros! haha

3 Likes

Oh my problem was that I not pulling the correct branch in storage from my local machine 2 :stuck_out_tongue:

3 Likes

When you have to access your structured data from Local Machine 2 what you have to do is follow these steps to resolve your problem to avoid it in future:

  • Push from Local Machine 1:
git add .
git commit -m "Add structured data"
git push origin main
````Preformatted text`

* Pull on Local Machine 2:
`git pull origin main`