#G

Git 使用总结

Git和svn还是比较像的(1)git如何提交一个文件的修改   比如本地修改了某个文件,需要提交,文件命为a.cpp//修改的注释>gitcommit-m"修改注释"a.cpp//最后提交到服务器>gitpush(2)git如何新增加一个文件  &nb...
ymnets ·2023-05-06

Ubuntu apt-get卸载小记

过sudoapt-getinstallxxxx安装软件后,总是无法卸载干净,这里以Apache为例,提供方法:首先sudoapt-getremoveapache2再sudoapt-getautoremove最近在Ubuntu下写python,需要看下python的文档,我找了很多关于ubuntu下查看chm的资料,最后...

更新证书错误Code Sign error: Provisioning profile ‘XXXX'can't be found

                在Xcode中当你在更新了你得证书而再重新编译你的程序,真机调试一直会出现CodeSignerror:Provisioningp...

Ubuntu 下使用 mutt 和 msmtp 发送 Gmail 邮件

参考:     http://www.cnblogs.com/refrag/archive/2012/11/28/2793533.html      http://www.habadog.com/2011/11/23/send-m...

git 新建服务器的版本以及项目的用户

一,git客户端账号生成1.git的客户端的公钥生成ssh-keygen-trsa-C"test@gmail.com" mac机器会在/Users/用户/.ssh会生成id_rsa和id_rsa.pub 2. 将id_rsa.pub的文件内容复制到git服务器的这目录 /home...

腾讯bugly团队提供的android国内镜像

 如果使用AndroidSDKManager下载比较慢或者打不开,可以使用国内镜像使用说明 http://android-mirror.bugly.qq.com:8080/include/usage.html...

umeng track 相关

NSString*appKey=@"57105bbbe0f55a7938002063";NSString*deviceName=[[[UIDevicecurrentDevice]name]stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];NS...
ymnets ·2020-03-25

CAGradientLayer的一些属性解析

CAGradientLayer的一些属性解析iOS中Layer的坐标系统:效果:-(void)viewDidLoad{[superviewDidLoad];CAGradientLayer*colorLayer=[CAGradientLayerlayer];colorLayer.frame=(CGRect){CGPoin...

APP One Link ,android and ios qrcode merge as One QRCode and one short link

AdroidandiosqrcodemergeasOneQRCodeandoneshortlinkispublish,thewebsiteis www.apponelink.com...

umeng 渠道统计ios

1、使用前提:需要在工程中添加依赖框架:AdSupport.framework 和 Security.framework2、在AppDelegate.m文件中的-(BOOL)application:(UIApplication*)applicationdidFinishLaunchingWithOp...

umeng 渠道统计 android

1、配置AndroidManifest.xml,添加权限 <uses-permissionandroid:name="android.permission.ACCESS_NETWORK_STATE"/><uses-permissionandroid:name="android.permiss...

Git remote 修改源

Gitremote修改源gitcommit-m"Changerepo."#先把所有为保存的修改打包为一个commitgitremoteremoveorigin#删掉原来git源gitremoteaddorigin[YOURNEW.GITURL]#将新源地址写入本地版本库配置文件gitpush-uoriginmaster...
ymnets ·2020-03-25

git 设置 key 到服务器,同步代码不需要输入用户名和密码

1 ssh-keygen-trsa2 vim~/.ssh/id_rsa.pub3.添加到git服务器,这样同步代码就不需要输入密码...

git 删除远程源,新增加源

gitremoteremoveorigingitremoteaddorigingit@XXXX...

Ubuntu 16.04 LTS 安装配置 Nginx 1.10.0 Php7.0-FPM

1.安装Nginx,Php-7.0~$sudoadd-apt-repositoryppa:nginx/stable~$sudoapt-getupdate~$sudoapt-getinstallnginx~$nginx-vnginxversion:nginx/1.10.0~$sudoapt-getinstallphp~$...
首页上一页...21322133213421352136...下一页尾页