博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git的安装与使用(一)--windows平台 .
阅读量:5953 次
发布时间:2019-06-19

本文共 1450 字,大约阅读时间需要 4 分钟。

 

1、Create     Account (在github网站上创建一个账号)

eg.  you used the email: taito@yahoo.com

 

2、Download && install (下载windows平台下的git软件)

  Then open the git  bash , input the commends

  $ git  config --global user.name "Your Name"

  Your Name 是你注册时用的用户名

  $ git  config --global user.email taito@yahoo.com

 

3、Create SSH-KEY  (创建SSH-key)

  $ ssh-keygen  -C   ' taito@yahoo.com'   -t  rsa

  # The git  bash ask you to enter something ,  but you can  Skip  everything ,

   just push the "  ENTER   "   key, when it 's finished,you need open the file:  id_rsa.pub

    And  copy the key. 

   创建rsa, 一路回车,最后会提示你

   Your public key has been saved in .... (某个地方) .pub 文件

   打开这个文件,复制key。

   登陆git网站,进入你的个人管理平台,创建一个ssh key,title随便填写,下面的key粘贴此段代码。

 

4、Create first project (创建你的第一个项目)

   Loginto the github home and create your first project, Then you can see this page:

    取个项目的名字,然后继续.会看到操作步骤。

Global setup:

Download and install  git config --global user.name "Your Name" git config --global user.email squarezw@yahoo.com.cn

Next steps:

mkdir pool cd pool git init touch README git add README git commit -m 'first commit' git remote add origin git@github.com:squarezw/pool.git git push origin master 在你的git bash下完成到这里后,看到成功上传项目后,即可直接跳到最下面的Continue! 如果出现Permission denied (publickey). 一般是你的ssh key没有正确添加。

Existing Git Repo?

cd existing_git_repo git remote add origin git@github.com:squarezw/pool.git git push origin master

Importing a Subversion Repo?

 

When you're done:

 

转载于:https://www.cnblogs.com/zhouwenwu/archive/2012/02/29/2373847.html

你可能感兴趣的文章
Java小细节
查看>>
poj - 1860 Currency Exchange
查看>>
chgrp命令
查看>>
Java集合框架GS Collections具体解释
查看>>
洛谷 P2486 BZOJ 2243 [SDOI2011]染色
查看>>
linux 笔记本的温度提示
查看>>
数值积分中的辛普森方法及其误差估计
查看>>
Web service (一) 原理和项目开发实战
查看>>
跑带宽度多少合适_跑步机选购跑带要多宽,你的身体早就告诉你了
查看>>
广平县北方计算机第一届PS设计大赛
查看>>
深入理解Java的接口和抽象类
查看>>
java与xml
查看>>
Javascript异步数据的同步处理方法
查看>>
iis6 zencart1.39 伪静态规则
查看>>
SQL Server代理(3/12):代理警报和操作员
查看>>
Linux备份ifcfg-eth0文件导致的网络故障问题
查看>>
2018年尾总结——稳中成长
查看>>
JFreeChart开发_用JFreeChart增强JSP报表的用户体验
查看>>
度量时间差
查看>>
通过jsp请求Servlet来操作HBASE
查看>>