Hi, Valdir! All right?
If I understand correctly, you want to work with your project on two machines.
That shouldn’t be a problem. Basically it would be more or less that:
Check if you have the git config
straight:
user: git config user.name "Seu Nome";
email: git config user.email [email protected]
If you are and do not solve try the following:
//Converter um diretório existente em repositório do github:
cd ~/[caminho de onde está teu projeto no pc]
git init
git add .
git commit -m "V1"
git remote add origin ~/[caminho de onde está teu projeto no pc]
git push origin master
Hence you must save the changes...
git add .
git commit -m "Versao modificada"
git push origin master
On the desktop you need to clone the repository. Let’s say it’s all in a folder called "Projects":
cd ~/Projetos
git clone -o [nome do teu projeto] ~/[caminho de onde está teu projeto nesse pc]
cd [nome do teu projeto]
git remote add origin ~/[caminho de onde está teu projeto nesse pc]
Hence you update the working directory from the central repository:
cd ~/[caminho de onde está teu projeto nesse pc]
git pull origin master
I hope I’ve helped.
Hug!