Add a github Project
Download git installation> https://git-scm.com/downloads
Create a git directory right-click the Directory and select Git Bash Here
Create an identity
Git config -- global user. name your github user name
Git config -- global user. email your github mailbox
Execute git init
Copy the project to the git directory.
Generate a public key file in git
Ssh-keygen-t rsa-C your github mailbox
Directly press enter to generate the. ssh directory.
Copy the content in id_rsa.pub to github to create a public key.
Test the Github connection command
Ssh-t git@github.com
Display Hi user name! You 've successfully authenticated, but GitHub does not provide shell access. The connection is successful.
Add remote address:
Git remote add origin (git remote address example: git@github.com: j2eemail/MenuDialogFragment. git)
Submit code to the repository
Git commit-m "first commit"
Merge initialization code
Git pull -- rebase origin master
Submit code to the server
Git push-u origin master