git使用整理

git 常用操作
配置本地环境
git config --global user.name “xxx”
git config --global user.email xxx@xxx
克隆项目
git clone https://xx/xx.git

git 出错
现象:
hrw@hrw-PC MINGW64 /f/gitee
$ git clone https://gitee.com/AIF-G5C/G5C.git
Cloning into ‘G5C’…
remote: [session-ee48b7ba] Access denied
fatal: unable to access ‘https://gitee.com/AIF-G5C/G5C.git/’: The requested URL returned error: 403
解决方法:
hrw@hrw-PC MINGW64 /f/gitee
$ git config --system --unset credential.helper

执行成功后再进行克隆,这个是有多个账号导致的,执行完再克隆就可以输入用户名和密码重新克隆了。

如果要提交代码建议先更新,减少冲突的概率

步骤如下

首先可以暂存本地的修改,如果本地没有修改,则会显示“没有要保存的本地修改”
git stash

执行命令会找到项目重新拉取代码进行更新,可以看到该程序有更新。
git fetch --all

执行命令进行更新文件的下载覆盖,下面会列出哪些文件进行了修改。
git pull

释放第一步保存的本地修改,因为现在的已经被覆盖到原作者最新的了。 //注意平时不要用,仅用于本地有修改,否则会有冲突。
git stash pop

如果存在冲突(比如你本地的仓库删除了,服务器又被添加了),git pull会报错无法拉取
解决方式:

$ git fetch origin
$ git clean -f
$ git reset --hard origin/master

然后输入git pull命令就可以正常拉取了

取消暂存内容 Changes to be committed::
git reset HEAD

取消工作区修改
git restore .

提交本地版本库
git commit -m “Synchronize the latest code of Pakistan engineer Sheryar to the gitee.”

新增文件要用git add添加

git checkout 8e57ec6
(xxx表示7位的历史编号) 把这个版本更改为历史版本

git log -p -1 查看最近一次修改。

你可能感兴趣的:(版本管理相关,git)