How to connect to server and use it?
on ios developers machine:(khosravi, tadayoni)
1.cd /har/jayi
2.mkdir echo-project
3.git init
4.git remote add origin [email protected]:/home/ios-git/git/echoforbiz.git
or
git remote add origin [email protected]:/home/ios-git/git/echomybiz.git
after changes:
5.git add --all (You tell server to know that you updated some files.)
6.git commit -m "message-which-describe-commit" (You commit what you did on your local git. You also put a message to know what was your changes about.You can check this messages on the history later. )
7.git push origin master (You push on the server.)
on android developers machine:(behdad, pouya, tadayoni)
1.cd /har/jayi
2.mkdir echo-project
3.git init
4.git remote add origin
[email protected]:/home/android-git/git/echoforbiz.git
or
git remote add origin [email protected]:/home/android-git/git/echomybiz.git
after changes:
git add --all (You tell server to know that you updated some files.)
git commit -m "message-which-describe-commit" (You commit what you did on your local git. You also put a message to know what was your changes about.You can check this messages on the history later. )
6.git push origin master (You push on the server.)
on web developers machine:( tadayoni)
1.cd /har/jayi
2.mkdir echo-project
3.git init
4.git remote add origin
[email protected]:/home/web-git/git/web.git
after changes:
- git add --all (You tell server to know that you updated some files.)
git commit -m "message-which-describe-commit" (You commit what you did on your local git. You also put a message to know what was your changes about.You can check this messages on the history later. )
- git push origin master (You push on the server.)