Coding使用方法

时间:2024-05-19 14:44:04

使用coding需要先再coding.net上创建账号
需要准备的基础配置软件
git客户端和tortoisegit

git下载官网:https://git-for-windows.github.io/
tortoisegit官网:https://tortoisegit.org/download/ (如果英语不好,可以在下面选择语言包下载)
1、登陆coding 注册 选择账户-ssh公钥
Coding使用方法
2、本地电脑上,选择git Bash Here
Coding使用方法
3、再git bash输入以下两行代码,用户名为你再coding注册的用户名和邮箱地址
git config –global user.name “xueer111” 替换为你自己的用户名
git config –global user.email [email protected] 替换为你再coding上注册的邮箱
4、之后输入下面的代码,然后在停顿处回车,生成公匙文件,如下图
ssh-****** -t rsa -C [email protected]”//再次说明,邮箱一定要是github的邮箱
Coding使用方法
5、到这一步你可以在”C:\Users\用户名”文件夹下看到一个”.ssh”文件夹,打开文件夹下”id_rsa.pub”文件,复制内容(一定要记得去掉最后的空格)把复制的内容粘贴到刚刚网站上的公匙粘贴框内
Coding使用方法
6、我们测一测是否能够连接到coding仓库。输入以下代码:
ssh -T [email protected] //注意coding的 git 地址已经改成 git.coding.net了,直接复制粘贴就好,回车后在停顿处输入”yes”后得到如下内容
Coding使用方法
如果出现successfully,则表明已成功连接至coding
基于Eclipse的使用
1.下载egit插件
打开Eclipse,git需要eclipse授权,通过网页是无法下载egit的安装包的。在菜单栏依次打开eclipse→help→install new software→add,Name栏中输入egit,location栏中输入 http://download.eclipse.org/egit/updates/ ,点击ok进行下载。下载完成后会提示重启eclipse;如果已经有了就不需要了。
Coding使用方法

或者直接下载插件安装

Coding使用方法

单击finish

  1. 在Eclipse中生public key, 并添加到Coding Repository中
    -(1)菜单栏单击window → preference → general → network connection → SSH2 → Key Management → generate RSA Key… → apply → save private key…
    Coding使用方法

-(2)生成 SSH 的 public key在Coding中通过:edit your profile -> ssh key -> Add SSH Key 添加SSH Key, 把上面生成的 public key 拷贝到这里,保存

Coding使用方法
Coding使用方法

  1. 项目名右击->Team->Share Project
    Coding使用方法
    Coding使用方法

  2. 提交
    在项目上右击–>team–>commit。
    注意:commit是commit到本机的git库,而push才是同步到coding
    Coding使用方法
    在弹出窗口输入你的coding上的git地址
    Coding使用方法
    Coding使用方法
    Coding使用方法

Coding使用方法
Coding使用方法

Coding使用方法

在coding上查看提交结果