All git pull does is fetch then merges. You can push an update from your personal computer and then go to work and pull the changes to a new computer (or git clone if you haven't got the files).
Which part are you having trouble with?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hi everyone, I already have the current project am working on on bitbucket, But its a pity my personal computer is not available and I want to use another computer to continue my project.
I know I can clone the project but I want it possible that after working on it, I also push it back to the repository.
So the challenge now is, I think that's what git pull is for but how to go about working with git when its the same user(me) pushing and pulling from different systems is my challenge.
Pardon me, I never used git pull before.
So pls how will I overcome this challenge so I can continue practicing, and update my repository while my personal computer is not available ?
Thanks
git clone git@bitbucket.org:name/repo.git and if you've setup your SSH key on both machines you can commit/push once finished.git pull when you get on your main PC.All you have to do is push/pull code and you can work on multiple machines.
Please or to participate in this conversation.