码迷,mamicode.com
首页 >  
搜索关键字:git to svn    ( 39950个结果
gitlab操作
新建一个gitlab,用于提交代码,然后git bash。 A20331@A200331R MINGW64 /d/workspace/gitlab (master)$ git clone git@10.240.1.140:tools-dev-team/ecusimulatorrecorder.git ...
分类:其他好文   时间:2021-01-22 11:59:10    阅读次数:0
git的常见使用
git常用命令总结 git配置相关命令 配置相关的命令都使用git config开始。详细请参看git config --help.常用到的git配置命令如下: 查看git所有配置项 git config -l或git config --list 直接修改配置文件 git config -e --g ...
分类:其他好文   时间:2021-01-21 10:48:15    阅读次数:0
Git commit/pull/push的操作步骤
1.操作步骤需要严格执行如下顺序:commit->pull->push 2.commit:将代码提交到本地仓库。 3.pull:将远程仓库代码同步到本地仓库。如遇冲突,解决冲突,重复commit->pull,直到没有冲突。 4.push:将本地仓库代码提交到远程仓库。 具体讨论如下: 本地和远程的关 ...
分类:其他好文   时间:2021-01-20 12:14:41    阅读次数:0
[网鼎杯 2018]Comment
花了挺多时间的一题,学到了很多,很有必要详细记录一下 打开环境,发现是个留言板,想要发贴,需要先登入 zhangwei zhangwei666 很明显的提示,直接猜中 看着留言板,第一感觉是sql注入 ,一直在找注入点,没找到。后知后觉,还没扫源码 扫下源码 Git泄露,Githacker 恢复下, ...
分类:其他好文   时间:2021-01-20 12:09:28    阅读次数:0
openCR Arduino软件配置
https://raw.githubusercontent.com/ROBOTIS-GIT/OpenCR/master/arduino/opencr_release/package_opencr_index.json ...
分类:其他好文   时间:2021-01-20 11:48:47    阅读次数:0
macbook m1 idea 2020.3 svn报错 解决方案 org.jetbrains.idea.svn.SvnUtil - Error opening connection java.sql.SQLException: Error opening connection
org.jetbrains.idea.svn.SvnUtil - Error opening connection java.sql.SQLException: Error opening connection at org.sqlite.core.CoreConnection.open(CoreC ...
分类:数据库   时间:2021-01-20 11:45:38    阅读次数:0
.gitignore 配置文件不生效解决方法
当我们将 .gitignore 文件配置好后,却往往不能失效。这是因为 .gitignore 只能忽略那些没有被追踪(track)的文件,因为 git 存在本地缓存,如果文件已经纳入了版本管理,那么修改 .gitignore 是不能失效的。那么解决方案就是要将 git 的本地缓存删除,然后重新提交。 ...
分类:其他好文   时间:2021-01-19 12:00:13    阅读次数:0
git生成ssh公钥和本地配置
ssh公钥生成 ssh-keygen 设置邮箱账号 git config --global user.email "you@example.com" 设置码云昵称 git config --global user.name "Your Name" ...
分类:其他好文   时间:2021-01-19 11:59:24    阅读次数:0
git 学习
https://www.cnblogs.com/mr-wuxiansheng/p/6974170.html ...
分类:其他好文   时间:2021-01-19 11:57:04    阅读次数:0
ieda使用git(码云)
1.先创建仓库 $ git init $ git remote add origin https://gitee.com/用户个性地址/仓库名.git 2.执行:$ git pull origin master 3.修改/添加文件 $ git add . $ git commit -m "第一次提交 ...
分类:其他好文   时间:2021-01-19 11:48:32    阅读次数:0
39950条   上一页 1 ... 48 49 50 51 52 ... 3995 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!