admin 管理员组文章数量: 887019
--------coding DevOps-------------
A:先在coding上,在代码仓库里先创建一个同名的项目,再点击“设置”按钮 部署公钥,再用git clone下来
https://sunboycll.coding/user/projects 用的这个登录 微信扫码登录
https://e.coding/sunboycll/coding-code-guide/config-repo.git
https://e.coding/sunboycll/coding-code-guide/config-repo
生成公钥
执行命令:
ssh-keygen -t rsa -C 2962938812@qq
ssh-keygen -m PEM -t rsa -b 4096 -C "your.email@example"
# Creates a new ssh key, using the provided email as a label
# Generating public/private rsa key pair.
Enter file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter] // 推荐使用默认地址
Enter passphrase (empty for no passphrase): // 此处不填写,回车即可;如果填写密码,则每次使用 SSH 方式推送代码时都会要求输入密码。
注意:进到项目目录下
B:提交代码
1: git commit -am 'ddd'
2: git push
再输入用户名 密码就可以了
(git push 用户密码)
774914081@qq
sunboy@5186
C: 拉取: 修改网络上的git文件内容,再拉取
1:git fetch
2:git merge
D:新加文件
1: git add .
2: git commit -am 'ddd'
本地缓存删除(改变成未被追踪状态)
git rm -r --cached .
---------------------------------------
版权声明:本文标题:腾讯github(coding DevOps),也有代码托管,类似github 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1726441808h961319.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论