摘要: idea集成Git 配置Git忽略文件,在C:\Users\lim目录下创建.gitignore文件,配置内容如下: # IntelliJ project files .idea *.iml out gen /.apt_generated/ /.classpath /.factorypath /.p 阅读全文
posted @ 2022-02-11 11:52 lim_sy 阅读(62) 评论(0) 推荐(0)
摘要: Typora图片粘贴到博客园不显示 EasyBlogImageForTypora 使用Typora写作,图片即时同步到博客网站,无需第三方图床,写完可直接粘贴。支持网络图片上传。 如何使用 Windows 下载程序::https://github.com/xiajingren/EasyBlogIma 阅读全文
posted @ 2022-02-11 11:48 lim_sy 阅读(270) 评论(0) 推荐(0)
摘要: github网址:https://github.com/ 新建远程仓库 远程仓库操作 git remote -v #查看当前远程仓库地址别名 git remote add 别名 https://github.com/whf778/git-lim.git #创建别名 git push 别名 分支 #推 阅读全文
posted @ 2022-02-11 09:37 lim_sy 阅读(111) 评论(0) 推荐(0)
摘要: 工作区 >暂存区>本地库==>远程库 git基本指令 git config --global user.name lim #设置用户姓名 git config --global user.email "lim.hundsun@com" #设置用户邮箱 git init #初始化本地库 git sta 阅读全文
posted @ 2022-02-11 09:33 lim_sy 阅读(29) 评论(0) 推荐(0)