git使用笔记

linux克隆到指定目录:

git clone xxx.git “指定目录” 

例子:git clone xxx.git  /data/wwwroot/test/

克隆好了之后,拉取最新的数据:

git pull  如果拉去失败的话 执行:git reset --hard origin/master

更新克隆地址:

Git Pull Failed: repository '.git/' not found

问题描述:git服务器迁移,git地址改变,但是本地没有变更新的git地址,导致pull或上传是失败。

Git Pull Failed: repository 'http://gitlab.***.com/***/***.git/' not found

问题解决如下方案:

git remote set-url origin 改变后的git地址(新的git地址),

例如:git remote set-url origin http://gitlab.***.com/***/***.git

你可能感兴趣的:(git使用笔记)