github初学者之如何使用SSH key

版权声明:本文为博主汪子熙原创文章,未经博主允许不得转载。 https://blog.csdn.net/i042416/article/details/89045728

Generate ssh key:

A pair of keys are generated:

log on github, settings->SSH keys->Add SSH key:

add id_rsa.pub:

once done, it looks like below:

create a new repository:

Then you could push your local git repository to github:

Then refresh in github, we should see the latest version is now available in github:

By clicking the “32 commits” we could have a detail review about each commit in github:

Once we have some new task done in local repository, we could use git push origin master to push the change from local master branch to github:

How to clone a remote repository to local

要获取更多Jerry的原创文章,请关注公众号"汪子熙":

猜你喜欢

转载自blog.csdn.net/i042416/article/details/89045728