Can you explain me how to use git in case, when I have access to repository:
First i would like to suggest you to read this nice documentation.
Prerequirements:
- Installed git.
- Have access to the repository.
You can download repository following these commands:
git clone
First you need to add changes, create commit, add remote branch and then push.
git remote add
Example if you use BitBucket: git remote add origin ssh://git@bitbucket.org//.git
git status // to see all changes (they should be printed with red
color)
git add
git commit or git commit -m 'some message'
git push