mac git配置

github使用SSH链接,需要设置SSH

1.检查SSH key

cd ~/.ssh

2.备份已有的key,(如果有的话)

mkdir key_backup

mv id_rsa* key_backup

3.生成SSH key

$ ssh-keygen -t rsa -C [email protected]

Generating public/private rsa key pair.

Enter file in which to save the key (/Users/jiangbo/.ssh/id_rsa):

Enter passphrase (empty for no passphrase):

Enter same passphrase again:

Your identification has been saved in yes.

Your public key has been saved in id_rsa.pub.

The key fingerprint is:

fb:c4:b0:e0:47:fd:be:e0:fb:ea:73:ef:a8:29:d5:22 [email protected]

The key‘s randomart image is:

+--[ RSA 2048]----+

|                 |

|                 |

|                 |

|         .       |

|      . S ..     |

|     . oE=o..    |

|      . +o+..    |

|       ..+.+..   |

|         oOB=+o  |

+-----------------+

4.将SSH key添加到GitHub

登录到GitHub页面,Account Settings->SSH Public Keys->Add another key

将生成的key(id_rsa.pub文件)内容copy到输入框中,save。

5.测试链接

$ ssh [email protected]

The authenticity of host ‘github.com (207.97.227.239)‘ can‘t be established.

RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.

Are you sure you want to continue connecting (yes/no)? yes

PTY allocation request failed on channel 0

Hi Jone Zhang! You‘ve successfully authenticated, but GitHub does not provide shell access.

Connection to github.com closed.

出现上述提示信息说明连接成功(github并不提供shell登陆但已经连接成功)

三、设置个人信息

$ git config --global user.name "Jone Zhang"

$ git config --global user.email [email protected]

补充内容:

Mac

在 Mac 上安装 Git 有多种途径:最简单的方法就是使用  Git OS X Installer。打开 Google Code 上的 git-osx- installer 页面,下载最新的安装包。现在最新的是 Git 1.7.5。挂载 dmg 镜像安装 Git。

  • 如果你想使用 Git GUI,那么就运行 dmg 镜像中的脚本来安装。
  • 如果你想使用类似于 Homebrew 或者 MacPorts 的包管理来安装,也是非常简单的。

Homebrew

$ sudo brew install git

MacPorts

$ sudo port selfupdate

$ sudo port install git-core

( sudo 是已 root 用户权限运行命令;通常安装软件是需要。如果使用 sudo,命令行会要求输入用户密码。)

如果想要更深入的体验 Git,那么就从源代码安装吧。首先,需要安装 Apple Developer Tools – Xcode。可以在  http://developer.apple.com/mac/ 下载。

我们将 Git 安装在 /usr/local 目录下,确保 Terminal 可以在 $PATH 环境变量中找到。 检查 /usr/ local/bin 路径 ( bin 代表 binary,编译的 Git 报存在子目录中)。 如果不再,打开 .profile 添加到最后。

export PATH=”/usr/local/bin:$PATH”

保存关闭 .profile 文件后,重启 Terminal。运行 echo $PATH 应该看到 /usr/local/bin 在 $PATH 环境变量中。

现在我们可以开始安装 Git 了,如果还不是很熟悉命令行,可以使用之前的方法安装。如果没有问题,开始吧。

下载并解压 Git 源代码:

$ curl -O http://kernel.org/pub/software/scm/git/git-1.7.5.tar.bz2

$ tar xzvf git-1.7.5

打开目录,编译 Git:

$ cd git-1.7.5

$ ./configure --prefix=/usr/local

$ make

$ make install

完成!现在可以删除这个目录的了。

$ cd ..

$ rm git-1.7.5

$ rm git-1.5.1.tar.bz2

应该看到 Git 已经成功安装,查看安装位置:

$ which git

应该得到 /usr/local/bin/git。如果正确,就说明已经成功从源代码安装 Git!

iCC Develop Center

时间: 2024-10-05 18:56:55

mac git配置的相关文章

在mac下配置Git服务器

一,设置远程访问 logout 当前账户,使用 git 账户登录:在 System Preferences->Sharing 中,勾选:Web Sharing 和 Remote Logig. 二. 下载安装gitosis 1,Mac Snow默认已经为我们安装了 Git 和 Python,可以使用如下命令查看其版本信息: yourname:~ git$ git --version git version 1.7.3.4 yourname:~ git$ python --version Pytho

[mac git 服务器端]

http://blog.csdn-net/kesalin/article/details/6943770 XCode 4 默认支持 Git 作为代码仓库,当我们新建一个仓库的时候,可以勾选创建默认仓库,只不过这个仓库是在本地的.本文介绍如何在 mac 机器上创建 Git 服务器,总体思路是:使用 gitosis 来简化创建过程,在用作服务器的机器上创建一个名为 git 的账户来创建 git 服务器,其他客户端通过 ssh 机制访问 git 服务器. 本文文档:点此下载 一,创建 git 账户1,

mac Git本地服务器配置

本文转载至 http://blog.csdn.net/piziliweiguang/article/details/9311791 XCode 默认支持 Git 作为代码仓库,当我们新建一个仓库的时候,可以勾选创建默认仓库,只不过这个仓库是在本地的.本文介绍如何在 mac 机器上创建 Git 服务器,总体思路是:使用 gitosis 来简化创建过程,在用作服务器的机器上创建一个名为 git 的账户来创建 git 服务器,其他客户端通过 ssh 机制访问 git 服务器. 本文文档:点此下载 一,

mac下配置gdb调试golang

mac下配置gdb调试golang 原文链接 https://sourceware.org/gdb/wiki/BuildingOnDarwin Building GDB for Darwin Creating the binary for Darwin isn't very difficult.  Download a release snapshot or get the current source via git/CVS/FTP, then configure and make as us

iOS - Git 配置(分布式版本控制系统)

1.Mac Git 配置文件 既然已经在系统上安装了 Git,你会想要做几件事来定制你的 Git 环境.每台计算机上只需要配置一次,程序升级时会保留配置信息.你可以在任何时候再次通过运行命令来修改它们. Git 自带一个 git config 的工具来帮助设置控制 Git 外观和行为的配置变量.这些变量存储在三个不同的位置: 1> /etc/gitconfig 文件: 包含系统上每一个用户及他们仓库的通用配置.如果使用带有 --system 选项的 git config 时,它会从此文件读写配置

初次安装git配置用户名和邮箱

初次安装git配置用户名和邮箱 初次安装git需要配置用户名和邮箱,否则git会提示:please tell me who you are. 你需要运行命令来配置你的用户名和邮箱: $ git config --global user.name "superGG1990" $ git config --global user.email "[email protected]" 注意:(引号内请输入你自己设置的名字,和你自己的邮箱)此用户名和邮箱是git提交代码时用来

mac上配置php开发环境

玉忠之前在我的mac上配置过,当时项目不能区分大小写,所以就没成功,我现在在他得基础上继续配置,希望成功. 教程:http://my.oschina.net/joanfen/blog/171109 以这个教程为准. 1.apache sudo apachectl start sudo apachectl -v 2.php /etc/apache2/  找到httpd.conf  httpd-2.conf是default 取消#LoadModule php5_module libexec/apac

Git配置用户名和邮箱

一.git配置提交用户名和邮箱 git config user.name "zhengyong" git config user.email '[email protected]' 二.生成公钥私钥 1.ssh-keygen -t rsa -C "[email protected]"

zend server mac 下配置

Post Installation on Mac OS X If you intend to use PHP and other tools provided by Zend Server (pear and pecl) from the command line (PHP CLI), it is recommended that you add the <install_path>/bin directory to your $PATH environment variable. This