Windows 转 Mac 利用git继续管理github

Posted pangya

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows 转 Mac 利用git继续管理github相关的知识,希望对你有一定的参考价值。

1. 试用:windwos 换了mac。怎么使用mac 继续使用git 在github 上传自己的项目。

 

解决:

    1):在mac 上下载git

    2):在mac 上clone 下自己的项目。

 

在mac上下载git:

  这里使用 homebrew 进行安装,占内存小。

  1.安装homebrew:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  2、安装git

brew install git

  3.进行验证git是否安装成功

git或者git -verison

  

 

2:SSH配置git

 

  • 设置username和email(github每次commit都会记录他们) 

      

git config --global user.name "登录账号名"
git config --global user.email "邮箱账号"

    通过终端命令创建ssh key 

ssh-keygen -t rsa -C “邮箱账号"

一直回车,输入用户名+密码(github登录的),最后会生成一串密钥。

cat .ssh/id_rsa.pub

 然后登陆github。找到settings。点击SSH AND GPG Keys---》New SSH key

技术图片

 

 

 

 

 

技术图片

 

 

把刚刚看到key辅复制进去,title 随便写。然后验证:

ssh -T git@github.com 

 

出现hi +用户名 即为成功。

 

试用clone。把原来到项目复制下来

git  clone https://wxxxx.git

可以随便添加点东西去测试是否可以上传

进入复制下来文件的目录:

git add .
git commit -m “test”
git push

 

成功后,可以进去github 查看一下。

 

 

以上是关于Windows 转 Mac 利用git继续管理github的主要内容,如果未能解决你的问题,请参考以下文章

GitLab版本管理(转)

Git命令总结

idea使用git管理项目(Mac版)

github托管代码

Git代码管理的使用流程

在旧 Mac (10.6.8) 上安装 git