300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > [ git ] git托管代码1

[ git ] git托管代码1

时间:2024-03-08 13:04:29

相关推荐

[ git ] git托管代码1

久闻git大名,但是一直不知道为何物。现在认真的过了一遍。原来是和svn一样的版本控制器。

具有速度快,分布式管理等优点。

现在就来看看git的使用过程,我这里是用开源中国来托管代码的,如果是使用github也是一样的。

1 先下载git for windows

然后一直点下一步安装.

2 安装之后,选择git gui.生成ssh 链接 git 公钥.

用命令也可以:

$ ssh-keygen -t rsa -C "your_emali@"

然后输入密码.

建议用第一种方式。第二种网上说是可以,但是我没成功过。

然后输入密码。

3 将公钥添加到开源中国上,或者是github中

在开源中国中新建一个公钥,然后将.ssh文件夹下的id_ras_pub中的内容复制到文本框中,这里的title可以随意.

/articles/generating-ssh-keys

4 测试链接:

输入命令:

$ ssh -T git@

然后输入yes

如果成功可以看到你的用户名和邮箱.

出现错误可以测试:$ ssh -Tv git@

5 设置用户名和邮箱

$ git config user.name"you name"$git config user.email"you_email@"

6 然后在web开源中国中创建一个project.

7 测试上传文件

创建文件夹,需要和你建立的projexct同名。

mkdir hellocd hellogit inittouch READMEgit add READMEgit commit -m 'frist commit'

8 提交

git remote add test git@:web用户名/hell.git

git push -u test master

如里有报错误:

To git@:yangzhi/hello.git! [rejected] master -> master (fetch first)error: failed to push some refs to 'git@:yangzhi/hello.git'hint: Updates were rejected because the remote contains work that you dohint: not have locally. This is usually caused by another repository pushinhint: to the same ref. You may want to first merge the remote changes (e.g.hint: 'git pull') before pushing again.hint: See the 'Note about fast-forwards' in 'git push --help' for details.

可以输入:

git push -f

可以ok了.

10 克隆代码

git clone git@github..com:用户名/项目名.git

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。