一、svn迁移至gitlab详细步骤 1.安装软件 yum install -y perl git subversion -y rpm -ivh *.rpm 2.整理svn系统内用户名单user.txt (1)方法一: svn checkout http://svnserver/trunk cd . ...
分类:
其他好文 时间:
2020-06-21 00:36:29
阅读次数:
183
很多时候,我们不需要拉取所有的内容,我们可以拉取指定版本后的内容。 你可用使用参数:-r8000:HEAD 例如使用下面的命令: git svn clone https://svn.code.sf.net/p/docutils/code/trunk docutils -r8000:HEAD 可以拉取 ...
分类:
其他好文 时间:
2020-06-21 00:06:44
阅读次数:
73
打开你的 IntelliJ Git项目。 右键选择 Git > Repository > Remotes 在弹出的界面中,你可用看到已经设置的 Remotes 因为我们当前的项目是从 SVN 上克隆下来的,所以你会看到有一个 svn 远程仓库。 我们希望将我们当前的项目重新提交到远程的 Git 中, ...
分类:
其他好文 时间:
2020-06-20 23:46:24
阅读次数:
86
安装git 在liunx终端sudo apt install git 使用git安装bunlde插件 git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim 对vimrc文件进行配置 call vu ...
分类:
系统相关 时间:
2020-06-20 21:32:22
阅读次数:
124
一.python操作mysql 1.1 基本语法 创建连接 host user passwor database 这四个参数必须写 import pymysql conn=pymysql.connect(host="127.0.0.1",user="root",password="",databas ...
分类:
编程语言 时间:
2020-06-20 16:36:33
阅读次数:
62
要构建LSQUIC,您需要CMake,zlib和BoringSSL。该示例程序使用libevent提供事件循环。 BoringSSL git clone https://boringssl.googlesource.com/boringssl cd boringssl; mkdir build; c ...
分类:
其他好文 时间:
2020-06-20 01:26:45
阅读次数:
89
配置用户信息 git config --global user.name 'xxxx' git config --global user.email 'sfasd@ksyun.com' 下载(拉取)代码库 git clone git@github.com:账号名/项目名.git 与远程交互 从远程库 ...
分类:
其他好文 时间:
2020-06-19 21:11:11
阅读次数:
62
rm /etc/apt/sources.list.d/pve-enterprise.list export LC_ALL=en_US.UTF-8 apt update && apt -y install git && git clone https://github.com/ivanhao/pvet ...
分类:
其他好文 时间:
2020-06-19 20:32:27
阅读次数:
46
一、传统mbr磁盘如何修复启动?前提:bios必须是Legacy1、改mbr格式:进入pe,通过磁盘管理软件看磁盘是否mbr格式,不是的话就改为mbr格式。2、选择正确的目标磁盘:打开bootice--物理磁盘---选择正确的目标磁盘3、安装ntldr引导程序:bootice---主引导记录安装下windowsmbr4、激活启动分区:bootice--分区管理,找到系统分区,激活它5、新建bcd配
分类:
其他好文 时间:
2020-06-19 17:59:32
阅读次数:
155
mac 安装brew报错 Failed to connect to raw.githubusercontent.com port 443: Connection refused解决办法
分类:
其他好文 时间:
2020-06-19 00:37:14
阅读次数:
155