git

github git clone ssh协议 clone超慢解决方案,提高Github Clone速度

北慕城南 提交于 2020-11-28 01:43:00
github git clone ssh协议 clone超慢解决方案,提高Github Clone速度 参考文章: (1)github git clone ssh协议 clone超慢解决方案,提高Github Clone速度 (2)https://www.cnblogs.com/landv/p/11302214.html 备忘一下。 来源: oschina 链接: https://my.oschina.net/u/4437884/blog/4756484

永久免费!国产操作系统 Deepin V20 Beta版发布(附安装教程)

霸气de小男生 提交于 2020-11-27 19:27:30
永久免费!国产操作系统 Deepin V20 Beta版发布(附安装教程) 收录于话题 #打怪升级进阶之路 30个 「 点击图片获取最近两年爆款好文 」 深度操作系统(DEEPIN)是武汉深之度科技有限公司致力于为全球用户提供美观易用、安全可靠的Linux发行版。经过一段时间的测试,这款操作系统的Beta版终于今天和大家见面了。这次Deepin v20操作系统带来了全新的Deepin桌面和全家桶软件,基于Linux 5.3内核,并宣布将永久免费使用。 深度操作系统 20 Beta采取统一的设计风格,从桌面环境和应用重新进行设计,其中底层仓库、内核分别升级到Debian 10、Kernel 5.3,全新的设计带来不一样的交互体验,同时不断优化系统各个方面,带来更加丰富的应用生态和系统稳定性,本次深度应用家族也带来全新的设计和新的应用。 Deepin V20 Beta测试版镜像下载: 64位版: http://cdimage.deepin.com/releases/20Beta/ 文件名称:deepin-20Beta-desktop-amd64.iso SHA-256:77ba059a49756eb1c95f1f4f9f3c45d161762269977c520b115d548799eb01d 今天,就带大家一起来安装这一款操作系统,一起来尝尝鲜。 1、下载镜像文件

小姐姐用动画图解Git命令,一看就懂!

不羁的心 提交于 2020-11-27 17:01:06
小姐姐用动画图解Git命令,一看就懂! 收录于话题 #打怪升级进阶之路 30个 「 点击图片获取最近两年爆款好文 」 无论是开发、运维,还是测试,大家都知道Git在日常工作中的地位。所以,也是大家的必学、必备技能之一。之前公众号也发过很多git相关的文章: Git这些高级用法,喜欢就拿去用! 一文速查Git常用命令,搞定版本控制照做就ok 大牛总结的Git使用技巧,写得太好了! 掌握这10条规范,轻松搞定Git! 但是呢,民工哥,也经常在后台看到读者说,命令太多了不好记啊,时间长了不用又忘记了等等的吐槽。是啊,要学一门技术真难,何况现在技术更新、迭代这么快..... 所以,对于学习Git这门技术,要是有一个一看就懂,一学就会的入门资料就好了。前不久,国外的一位小姐姐写了一篇这样的文章《CS Visualized: Useful Git Commands》。作者是来自英属哥伦比亚的小姐姐 Lydia Hallie,在这篇文章里面,她通过生动形象的动画,以更加直观的方式,向开发者展示 Git 命令中的 merge、rebase、reset、revert、cherry-pick 等常用骚操作的具体原理。 下面就给大家带来一些实例分享: 1、git merge fast-forward模式 no-fast-forward模式 合并冲突修复的过程 ,动画演示如下: 2、git rebase

【总结】git命令

二次信任 提交于 2020-11-27 06:57:05
ls 文档内容列表 cd 跳转到(文件) mkdir (文件名)创建库 monkeys init 创建项目框架(monkeys) git init 初始化 cd ../跳出文件夹 sudo rm -rf (文件名)删除文件 git branch -la 查看所有分支(包括线上,线下)//在游戏目录中查看 git branch 查看当前在哪个分支上 git checkout -b (分支命)拉取并切换到一个分支 git pull origin daily/4.0.0 (根据分支和版本号而定) 拉取文件到本地 git clone( 路径) 把git库上的代码下载到本地 git status 启动仓库 git remote -v显示更详细的信息 git log —graph 看分支合并图 git branch -d (分支名) 删除分支 git checkout --readme.txt 把readme.txt文件在工作区的修改全部撤销 sudo npm update monkeys -g 升级monkeys(组件名称) sudo npm update -g henbane 升级zenbane sudo npm uninstall zenbone -g 卸载henbane git checkout src/com/android/…/xxx.js 撤销修改 sudo vim /etc

vscode插件安装及快捷键

北城以北 提交于 2020-11-27 04:48:52
插件 1.汉化 如果需要汉化,ctrl + shift + x,打开插件商店,输入 chinese,然后选择第一个,点击 ‘install’ 2.Git history Git 历史 3.Auto Close Tag 自动写关闭标签的插件 4.Auto Rename Tag 自动重命名关闭标签 5.Mithril Emmet 注意:其实vscode 内置了Emmet插件 高效编写 HTML、CSS 代码的插件,能快速输入大部分内容 比如,在编辑 HTML 文件时,输入 tr*2>td*3 ,然后回车,就能快速生成一个两行三列的表格标签。 6.Quokka Quokka 是一个调试工具插件,能够根据你正在编写的代码提供实时反馈。它易于配置,并能够预览变量的函数和计算值结果。另外,在使用 JSX 或 TypeScript 项目中,它能够开箱即用。 7.open in browser 右击直接在浏览器查看 快捷键 放大缩小试图:ctrl + 和 ctrl - 向上复制一行:alt + shift + ↑ 向下一行:alt + shift + ↓ 当光标点击到某一行时,默认选中全行,可以直接复制剪切 来源: oschina 链接: https://my.oschina.net/u/4408513/blog/3422547

Git 设置大小写敏感

大城市里の小女人 提交于 2020-11-27 02:44:31
1. 进入本地git项目,打开Git Bash输入下面命令查看是否大小写敏感,默认是不分区大小写的 git config --get core.ignorecase 2. 设置当前项目git为大小写敏感 git config core.ignorecase false 来源: oschina 链接: https://my.oschina.net/u/3087202/blog/3096679

Making git format-patch follow renames like git log --follow

放肆的年华 提交于 2020-11-27 01:49:50
问题 I am trying to move files from one local git repository to another local git repository for a different project while preserving history from the original repository. So far I have this, which is working fine if the file was never moved or renamed in the source repo: # Executed from a directory in the target repository ( cd $SOURCE_REPOSITORY_DIRECTORY && git format-patch -B -M --stdout --root $SOURCE_FILENAME) | git am --committer-date-is-author-date This happens to work because the

Making git format-patch follow renames like git log --follow

回眸只為那壹抹淺笑 提交于 2020-11-27 01:49:44
问题 I am trying to move files from one local git repository to another local git repository for a different project while preserving history from the original repository. So far I have this, which is working fine if the file was never moved or renamed in the source repo: # Executed from a directory in the target repository ( cd $SOURCE_REPOSITORY_DIRECTORY && git format-patch -B -M --stdout --root $SOURCE_FILENAME) | git am --committer-date-is-author-date This happens to work because the

Making git format-patch follow renames like git log --follow

我怕爱的太早我们不能终老 提交于 2020-11-27 01:48:07
问题 I am trying to move files from one local git repository to another local git repository for a different project while preserving history from the original repository. So far I have this, which is working fine if the file was never moved or renamed in the source repo: # Executed from a directory in the target repository ( cd $SOURCE_REPOSITORY_DIRECTORY && git format-patch -B -M --stdout --root $SOURCE_FILENAME) | git am --committer-date-is-author-date This happens to work because the

在线表单设计器现在已经开源

走远了吗. 提交于 2020-11-27 01:45:24
在线表单设计器现在已经开源 https://github.com/jidanji/formbulder/tree/1.0.0.1 使用jquery做的表单设计器现在已经开源。目前在已经在github上把代码上传。 功能介绍 1、支持左侧可以自定义控件,代码片段化。 2、支持拖放形成表单。 3、支持数据的持久化。 4、支持数据的自定义。 5、支持的组件的种类繁多,基本的html5组件+容器类的+业务组件。 6、支持对容器的圈选。 使用场景 1、流程系统,不确定性高的表单。 2、人资系统。 3、问卷调查系统。 去git上下载 https://github.com/jidanji/formbulder/tree/1.0.0.1 最新收集的需求: 1、支持打印。 2、支持像word一样的分页打印。 3、支持输入,删除,预览功能。 欢迎捐赠   来源: oschina 链接: https://my.oschina.net/u/4337072/blog/3333270