I'm new to Git and I searched for an answer to this but couldn't quite find what I need.
Basically, I have setup a project on my work computer, added files etc and commited to a GitHub repository. I get all that but once I got home, I wanted to download that same project and change a few files as the same user.
At home, I've set up my user.name and user.email like so:
git config --global user.name "username"
git config --global user.email "email"
What I think I do next is:
git clone url
As I said, I'm the same user just working from a different computer - is there anything special I need to do to make sure Git recognises that I'm the same user?
I'm aware this is probably a silly question but nowhere I've found seems to cover this and I really want to make 100% sure that I'm doing this correctly.