If you did not create your project from a Git repository, you can link an existing project to a Git remote (for example, git@github.com:username/repo.git) so that you can push and pull your code.
git@github.com:username/repo.git
Shell
git init git add * git commit -a -m 'Initial commit' git remote add origin git@github.com:username/repo.git
git status
git init
.gitignore
What kind of feedback do you have?