02 2022 档案
摘要:gitlab安装 下载地址:https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/7/gitlab-ce-14.7.2-ce.0.el7.x86_64.rpm 编写github-install.sh安装脚本,将以下代码复制进去 sudo r
阅读全文
摘要:idea集成Git 配置Git忽略文件,在C:\Users\lim目录下创建.gitignore文件,配置内容如下: # IntelliJ project files .idea *.iml out gen /.apt_generated/ /.classpath /.factorypath /.p
阅读全文
摘要:Typora图片粘贴到博客园不显示 EasyBlogImageForTypora 使用Typora写作,图片即时同步到博客网站,无需第三方图床,写完可直接粘贴。支持网络图片上传。 如何使用 Windows 下载程序::https://github.com/xiajingren/EasyBlogIma
阅读全文
摘要:github网址:https://github.com/ 新建远程仓库 远程仓库操作 git remote -v #查看当前远程仓库地址别名 git remote add 别名 https://github.com/whf778/git-lim.git #创建别名 git push 别名 分支 #推
阅读全文
摘要:工作区 >暂存区>本地库==>远程库 git基本指令 git config --global user.name lim #设置用户姓名 git config --global user.email "lim.hundsun@com" #设置用户邮箱 git init #初始化本地库 git sta
阅读全文