码迷,mamicode.com
首页 > 其他好文 > 详细

Git简易教程

时间:2021-06-02 15:50:26      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:car   done   ber   span   class   tle   ast   conf   opera   

常规步骤

  1. 新建空文件夹
  2. 在新建文件夹下打开git bush here
  3. git init ???初始化本地仓库
  4. 配置自己的用户名和密码

可以随便输入,建议自己姓名+邮箱

‘‘‘自定义用户名‘‘‘
git config user.name XXX         
‘‘‘自定义邮箱‘‘‘
git config user.email XXX@XX.com
  1. git remote add origin XXX ???  ? 添加远程仓库地址
  2. git pull origin XXX                       拉取远程仓库分支
  3. git add -A  或者使用 git add .       提交代码到暂存区
  4. git commit -m " "                        提交代码到本地库
  5. git push origin master                提交代码到远程库

如果远程库不是master,则采用 git push origin 本地库名:远程库名

通用操作

查看日志

  1. git reflog(常用)
  2. git log
  3. git log --pretty=oneline

回退版本

技术图片
基于索引值最常用

git reset --hard [局部索引值]

eg:
git reset --hard a6ace91

 

常见报错解决

提示文件名太长

  1. 在上传文件的文件夹下打开git bush here
  2. 操作命令: $ git config --system core.longpaths true (将git的配置文件中的长文件名修改为true)
  3. 查看修改结果: git config core.longpaths

技术图片

如果执行报错:使用git config  core.longpaths true  

git config  core.longpaths true  是在本地库修改,git config --system core.longpaths true是全局修改

Git简易教程

标签:car   done   ber   span   class   tle   ast   conf   opera   

原文地址:https://www.cnblogs.com/zhengyiran/p/14825537.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!