Mac OS连接git@git.oschina.net(不啰嗦的傻瓜版)

不羁的心 提交于 2019-11-28 18:37:55

####请先注册http://git.oschina.net。 ##环境准备:

  1. Xcode(直接AppStore下载安装)
  2. Git(可以在http://code.google.com/p/git-osx-installer/下载git安装程序,或者在https://www.kernel.org/pub/software/scm/git/下载源码安装。)

###源码安装过程:

  1. 解压源码包

     tar xjvf git-1.8.3.tar.bz2
    
  2. 编译

     cd git-1.8.3
     ./configure --prefix=/usr/local
     make
    
  3. 安装

     sudo make install
    

##配置Git并连接到git@git.oschina.net 请参见老左的博客Xcode连接git@osc中第一步至第四步。

##将工程同步到git@git.oschina.net

  1. 在你的git.oschina.net下“创建项目”。

  2. 在你的电脑上,为了以后管理方便,应该为OSChina上的项目建立一个文件夹统一管理,例如gitOSChina。在次级目录下存放每一个项目。

  3. 打开命令行工具,执行命令:

     cd gitOSChina/JBCalendar/			进入项目的目录
     git init							初始化本地库(仅第一次时需要)
     git remote add origin git@git.oschina.net:JustBen/jbcalendar.git  添加远程版本库的别名
     git add .		添加所有文件到版本库
     git commit -a -m "commit JBCalendar"	添加所有修改该版本库
     git pull origin master		从远程库获取并合并到本地库
     git push origin master		将修改推送到远程库
    
  4. 至此,新建工程完成了。

##更新工程

  1. 类似于创建项目时的操作,打开命令行工具,执行命令

     cd gitOSChina/JBCalendar/			进入项目的目录
     git add .		添加所有文件到版本库
     git commit -a -m "commit JBCalendar"	添加所有修改该版本库
     git pull origin master		从远程库获取并合并到本地库
     git push origin master		将修改推送到远程库
    
  2. 至此,更新完毕。

##错误小结

错误:

git pull origin master

ssh: Could not resolve hostname git.oschina.net:JustBen: nodename nor servname provided, or not known
fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.

解决方法:

重新设置SSH

	cd
	cd ~/.ssh/
	ssh-keygen
	
	Generating public/private rsa key pair.
	Enter file in which to save the key (/Users/yongbin/.ssh/id_rsa): 
	/Users/yongbin/.ssh/id_rsa already exists.
	Overwrite (y/n)? y
	Enter passphrase (empty for no passphrase): 
	Enter same passphrase again: 
	Your identification has been saved in /Users/yongbin/.ssh/id_rsa.
	Your public key has been saved in /Users/yongbin/.ssh/id_rsa.pub.
	The key fingerprint is:
	f8:87:a4:25:37:7c:bf:64:b1:4f:d5:e1:27:74:18:9e yongbin@YongbinZhang.local
	The key's randomart image is:

	+--[ RSA 2048]----+
	|              .  |
	|             . + |
	|              E..|
	|       o     ...o|
	|      o S . . ..+|
	|       B + . o o.|
	|      . o . = .  |
	|         . o +   |
	|            . .  |
	+-----------------+


	cat id_rsa.pub | pbcopy		在git.oschina.net中添加一个SSH,直接复制到里面即可
	
	
	cd ~/OSChina/JBCalendar/	进入工程目录
	
	git add .
	git commit -a -m "xxxxxxxxxxxxxx"
	git pull origin master
	git push origin master
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!