First, the new managed project
1. Registration;
2. Click New repositories to create a newly created project;
3. Enter the project name and project description,Create repository;
4. Click on the Clipboard icon in the right column to record your project address.
Second, upload the project
1. Download and install the latest version of msysgit;
2. Go to the root directory of the project you want to host and right-start the Git Bash command line;
3. Enter git clone and then copy the previously recorded address to the back, enter;
4. Copy the file you want to pass to the down directory;
5.CD directoryname ( directory name ) into the root directory of the managed project, you will see the directory behind the "(Master)" Word, the new version of the See is blue ;
6. Enter git Add. add changes to the version manager;
7. Enter git commit-m "Changes log" submitted to the local version control library, the quotation marks are your information about this submission;
8. Finally enter git push-u Origin master to submit your local repository to your GitHub account and you will be asked to enter your GitHub 's account number and password.
GitHub new managed project and upload project