Member 1: Wang Wen 201303011159
Job URL: https://github.com/1246251747/3/blob/master/jjj.txt
Experience:
1. Apply for a GitHub account. For example: Name: ss, email: xxxx;
2. Download git on git-scm.com;
3. Open git Bash when the download is complete;
4. In Git bash, enter:
$ git config--global user.name "ss".
$ git config--global user.email "xxxx".
$mkdir a file name.
$git Init
5. Set up SSH key
And then enter:
$ ssh-keygen-c "xxxx"-t RSA
Close it
After that, locate the. SSH directory in the user's home directory, locate the Id_rsa.pub file,
and open the Id_rsa.pub file, copy the content
On GitHub, open the settings in the upper right corner and open the SSH Keys page on the left side of the page that appears:
"Add SSH Key", fill in any title, paste the contents of the Id_rsa.pub file in the key text box, set the key.
6. On the GitHub website, new repository can write any name and comment.
7. Right-click to open the content file you want to save in GIT bash format and enter:
$ git init
$ git Add--all
$ git commit-m "any"
$ git Remote add Origin https://github.com/1246251747/ggg.git $ git push-u Origin Master
After the success, GitHub and your local warehouse have been linked, your code has been uploaded up!
GitHub Learning Steps