随笔分类 - git
摘要:将本地仓库关联到远程仓库方式一:远程仓库没有文件第一步: 1 git init(初始化git仓库); 第二步: 1 git remote add 地址(设置remote地址); 第三步: 1 git add . (将所有变更提交到本地仓库); 第四步: 1 git commit -m '' (提交注
阅读全文
摘要:git使用用户名密码clone的方式: git clone http://username:password@remote eg: username: abc@qq.com, pwd: test, git地址为git@xxx.com/test.git git clone http://abc%40q
阅读全文