Aaron445 Aaron445
4年前
46个Linux面试常见问题送给你
问题一:绝对路径用什么符号表示?当前目录、上层目录用什么表示?主目录用什么表示?切换目录用什么命令?答案:绝对路径:如/etc/init.d当前目录和上层目录:./ ../主目录:/切换目录:cd
Stella981 Stella981
3年前
Git设置
全局设置gitconfigglobaluser.name"用户名"gitconfigglobaluser.email"xxx@126.com"创建git仓库:mkdirdsa\_zhedacddsa\_zhedagitinittouchREADME.mdgita
Stella981 Stella981
3年前
Git push
我有两个不同版本的git。在1.6.2版本中,gitpush没有u选项。它只出现在1.7.x版本中。从文档中,u与变量相关branch.<name.merge在gitconfig。该变量如下所述:Defines,togetherwithbranch.<name.remot
Stella981 Stella981
3年前
Git 手册
gitinit                                                 初始化本地git仓库(创建新仓库)gitconfigglobaluser.name"xxx"                      配置用户名gitconfigglobaluser.emai
Stella981 Stella981
3年前
Git安装
安装sudoaptgetinstallgit配置用户名和邮箱gitconfigglobaluser.nameluffygitconfigglobaluser.emailfraiic@163.comgitconfiglist查看1.创建项目,Git
Stella981 Stella981
3年前
Git学习
已有项目添加到Git操作流程:1.在一个目录下执行gitinit,会将当前目录创建为git仓库gitinit2.执行gitadd.把当前目录下所有文件添加到仓库gitadd.3.把添加的文件提交到本地仓库gitcommitm'Firstcommit'4.添加remote及验证remote。
Stella981 Stella981
3年前
Git基本用法(上)
1.Git配置gitconfigglobaluser.name"qwop"gitconfigglobaluser.email"qwop@live.cn"cat~/.gitconfig2\.获得一个仓库gitclonehttp://git.shiyanlou.com/shiyanlou/gitproject
Wesley13 Wesley13
3年前
Mysql免安装版的应用
、首先netstopmysql服务,并且切换到任务管理器,有与mysql有关的,最好关闭进程。2、运行CMD命令切换到MySql安装bin目录cd/dD:\\ProgramFiles\\MySQL\\MySQLServer5.6\\bin接着执行mysqldskipgranttables(注意后面没有分号;)会出现下面
Stella981 Stella981
3年前
Git 详解
Git详解之一 Git起步(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fwww.openopen.com%2Flib%2Fview%2Fopen1328069609436.html)http://www.openopen.com/lib/view/open132806
Stella981 Stella981
3年前
Git sparse
根据网上资料整理而来,git1.7版本后支持的sparsecheckout特性,可以指定需要checkout的目录或者文件。设置允许git克隆子目录gitconfigcore.sparsecheckouttrue创建本地空repogitinitmyRepo&&cdmyRepo