码迷,mamicode.com
首页 >  
搜索关键字:git bash    ( 46194个结果
Shell和bash变量类型
Shell是面向过程的(bash为例)变量是进程的变量,进程结束,变量消失。bash变量类型:环境变量本地变量(局部变量):位置变量特殊变量本地变量:setVARNAME=VALUE作用域为整个bash进程局部变量:localVARNAME=VALUE作用域为当前代码段环境变量:作用域为当前shell进程及其子进..
分类:系统相关   时间:2015-01-09 12:47:53    阅读次数:224
git clone下载内容过大
第一种解决方法: Try reducing the postBuffer size in the remote repository config. Follow the steps below     Go to remote git repository directory     Run the following command to reduce the size of pos...
分类:其他好文   时间:2015-01-09 12:44:59    阅读次数:159
实习日志
id情景描述出现原因解决方案1执行make updata-api和make -j,报...Email错误手动误删除了相关 的文件通过执行git status命令发现缺失部分执行git checkout将该部分文件同步(下载)下来2Git仓库smartgit图形化分支概念仓库冲突解决团队目标:dian...
分类:其他好文   时间:2015-01-09 12:09:56    阅读次数:287
关于SHA1的认识
在看《Pro git 2》时,有这么一段话: The mechanism that Git uses for this checksumming is called a SHA-1 hash. This is a 40-character string composed of hexadecimal...
分类:其他好文   时间:2015-01-09 10:38:11    阅读次数:281
git常用命令
(1)git branch 查看本地分支(2)git branch -a 查看远程分支(3)git checkout branchname 切换分支 (4)git add yourfile (5)git commit -a -m "描述" 提交你当前开发到暂存区,可以理解为你本...
分类:其他好文   时间:2015-01-09 10:37:45    阅读次数:113
Python 统计不同url svn代码变更数
1 #!/bin/bash/python 2 # -*-coding:utf-8-*- 3 #svn统计不同url代码行数变更脚本,过滤空行,不过滤注释。 4 import subprocess,os,sys,time,re,shutil 5 from optparse import O...
分类:编程语言   时间:2015-01-09 10:37:38    阅读次数:157
git 管理多个私钥
.ssh/config文件:host imspringhostname 182.92.153.2IdentityFile ~/.ssh/id_rsaport 22
分类:其他好文   时间:2015-01-09 10:36:41    阅读次数:112
bash echo去回车和翻译转义字符
bash echo去回车和翻译转义字符1、去掉回车1$ echo -n "Enter your name:" //echo命令2Enter your name:_ //提示输入2、转义1 www.ahlinux.com $ echo -e "Enter your name:\c" /...
分类:其他好文   时间:2015-01-09 10:26:14    阅读次数:161
[Heroku] How to pull, push changes
1. First you need to login heroku:heroku login2. Then you need to download the code:heroku git:clone -a 3. After you done your changes, cd to project ...
分类:其他好文   时间:2015-01-09 07:00:09    阅读次数:220
locate 查找命令
运行locate httpd.conf,提示-bash: locate: command not found错误。则需要安装mlocate软件包:yum install mlocate搜索,提示locate: can not stat () `/var/lib/mlocate/mlocate.db'...
分类:其他好文   时间:2015-01-09 01:34:08    阅读次数:176
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!