Git

Git

Alexander

1) Download git

2) open git bash

3) change location for current project-files cd /d/folder/folder/...

4) git init - initialization of project - create invisible folder .git

5) git add . - add all file for revision of git

6) git commit -m "your comment" - create commit

Bind your project and Github

1) Create new Rep

2) Open link of your project github

3) copy path and execute next commands

4) git remote add origin <Your URL> - say current git-project remote URL

5) git push origin master - send to server your data


Useful program:

Report Page