博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git免密码提交
阅读量:5063 次
发布时间:2019-06-12

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

Git 提交

1、git init2、git add .3、git commit -m “说明”4、git remote add origin https://github.com/superbobogithub/xxxx.git5、git push -u origin master

 

下面说一下https克隆的方式免密码提交

  • 使用https的方式克隆代码

    git clone https://github.com/akmumu/google_hosts.git

  • 查看项目中的配置文件

    vim .git/config

    [core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true ignorecase = true precomposeunicode = true [remote “origin”] url = https://github.com/akmumu/google_hosts.git fetch = +refs/heads/:refs/remotes/origin/ [branch “master”] remote = origin merge = refs/heads/master

  • 修改remote中的url那行如下

    url = https://akmumu:123456@github.com/akmumu/google_hosts.git

即 username就是你账号的个性地址


转载于:https://www.cnblogs.com/superbobo/p/5526414.html

你可能感兴趣的文章
Windows Phone开发(4):框架和页 转:http://blog.csdn.net/tcjiaan/article/details/7263146
查看>>
Windows Phone Marketplace 发布软件全攻略
查看>>
Unity3D研究院之打开Activity与调用JAVA代码传递参数(十八)【转】
查看>>
语义web基础知识学习
查看>>
hexo个人博客添加宠物/鼠标点击效果/博客管理
查看>>
python asyncio 异步实现mongodb数据转xls文件
查看>>
关于WPF的2000件事 02--WPF界面是如何渲染的?
查看>>
单元测试、、、
查看>>
SVN使用教程总结
查看>>
JS 浏览器对象
查看>>
TestNG入门
查看>>
【ul开发攻略】HTML5/CSS3菜单代码 阴影+发光+圆角
查看>>
虚拟中没有eth0
查看>>
Unity 3D游戏开发学习路线(方法篇)
查看>>
BZOJ2049[Sdoi2008]Cave 洞穴勘测(LCT模板)
查看>>
vuex插件
查看>>
2011年12月09日
查看>>
[ZJOI2007]棋盘制作 【最大同色矩形】
查看>>
合并单元格
查看>>
swift-初探webView与JS交互
查看>>