码迷,mamicode.com
首页 >  
搜索关键字:git add    ( 66339个结果
PVPC代码的运行脚本
我们写的 PVPC 的代码在 gitee 上可以下载:https://gitee.com/luyi07/pvpc.git 这里摘录一个脚本,用来自动做变分+投影,在最新的版本里会放在 example/run.sh 中,运行方法: bash run.sh #!/bin/bash nucleus=Cr4 ...
分类:其他好文   时间:2021-07-01 17:36:28    阅读次数:0
C51汇编多字节求和
题目描述: 多字节数据求和,求无符号数Ai的累加和。Ai为单字节数,并按i(i=1,2,3,...,,n)顺序存放在RAM从60H开始的单元中,n放在R2中,求他们的和(双字节)高位放在R3,低位放在R4中。 算法思想: 向让低四位相加求和(ADD),如果有进位(CY=1),则对高四位用ADDC,并 ...
分类:其他好文   时间:2021-07-01 17:08:12    阅读次数:0
reverse operation of git add
before commit, do: git rm --cached <filename> ATTENTION: do not use 'git rm <filename>', this will delete the file from disk if commited, first use: " ...
分类:其他好文   时间:2021-07-01 17:07:16    阅读次数:0
删除git文件版本控制
//-n 预览需要删除版本控制的文件列表 git rm -r -n --cached "vendor" //执行删除命令 git rm -r --cached "vendor" //添加文件到.gitignore //提交git commit -m "remove vendor" //提交到远程服务 ...
分类:其他好文   时间:2021-07-01 17:03:23    阅读次数:0
CentOS7利用docker安装MySQL5.7
利用yum 安装docker 安装一些必要的系统工具: sudo yum install -y yum-utils device-mapper-persistent-data lvm2 添加软件源信息: sudo yum-config-manager --add-repo http://mirror ...
分类:数据库   时间:2021-07-01 17:02:47    阅读次数:0
爬取小程序所有教程scrapy
setting: from fake_useragent import UserAgent BOT_NAME = 'wxapp' SPIDER_MODULES = ['wxapp.spiders'] NEWSPIDER_MODULE = 'wxapp.spiders' ROBOTSTXT_OBEY ...
分类:微信   时间:2021-07-01 17:00:41    阅读次数:0
"Hello osmdroid World"手机GPS轨迹数据
osmdroid's MapView is basically a replacement for Google's MapView class. First of all, create your Android project, and follow HowToMaven if you're u ...
分类:移动开发   时间:2021-07-01 16:54:55    阅读次数:0
push local repo to git remote on creating a new branch
current status: We have a remote repository and a local project repository with no git configured. We want to push to remote and create new branch. Pr ...
分类:其他好文   时间:2021-07-01 16:24:13    阅读次数:0
布局(LinearLayout,RelativeLayout,FrameLayout,TableLayout,GridLayout,ConstraintLayout)
LinearLayout layout_gravity:组件在父容器里的对齐方式 gravity:组件包含的所有子元素的对齐方式 layout_weight:在原有基础上分配剩余空间,一般把layout_height都设置为0dp再使用此属性 设置分割线可以用divider属性,或者插入View < ...
分类:其他好文   时间:2021-06-30 18:44:14    阅读次数:0
ASAv 使用簡介:
ASAv 使用簡介:設定vmware中虛擬機第一張網卡NAT模式enable #特權模式conf t #進入設定hostname asav #設定主機名int m0/0 #選定管理端口 m0/0 端口ip add dhcp #設定 ip 取得方式 dhcpnameif mgmt #設定端口名字no ...
分类:其他好文   时间:2021-06-30 18:31:17    阅读次数:0
66339条   上一页 1 ... 4 5 6 7 8 ... 6634 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!