在Coding.net部署演示网站
访问仓库
访问仓库: https方式: https://git.coding.net/xxxxxx/yyyyyy.git ssh方式: [email protected]:xxxxxx/yyyyyy.git |
git和推送项目
cd /opt/workSpace1 root@cathy:/opt/workSpace1# git clone [email protected]:xxxxxxx/yyyyyyy.git yyyyyyy 正克隆到 'yyyyyyy'... remote: Counting objects: 6, done. remote: Compressing objects: 100% (4/4), done. remote: Total 6 (delta 0), reused 0 (delta 0) 接收对象中: 100% (6/6), done. 检查连接... 完成。 后面是正常的 git add rm mv comit git commit -m "commit once" git push -u origin master …… 这些操作 |
ssh公钥
1. 生成公钥 # ssh-keygen -t rsa -b 4096 -C "[email protected]" 2. cat /root/.ssh/coding1_rsa.pub 把内容贴到“帐户”下面的“ssh公钥管理里面” 3. 测试,第一次操作需要输入yes ### 使用生成的非默认地址的公钥存放点,以后就不用手工指定公钥的位置 ### ### 可以在.ssh/config文件中加上如下: ### Host git.coding.net User [email protected] PreferredAuthentications publickey IdentityFile ~/.ssh/coding1_rsa |