资源简介
linux下的git2.0.0
Git在Wikipedia上的定义:它是一个免费的、分布式的版本控制工具,或是一个强调了速度快的源代码管理工具。Git最初被Linus Torvalds开发出来用于管理Linux内核的开发。每一个Git的工作目录都是一个完全独立的代码库,并拥有完整的历史记录和版本追踪能力,不依赖 于网络和中心服务器。
代码片段和文件信息
#include “cache.h“
/*
* Do not use this for inspecting *tracked* content. When path is a
* symlink to a directory we do not want to say it is a directory when
* dealing with tracked content in the working tree.
*/
int is_directory(const char *path)
{
struct stat st;
return (!stat(path &st) && S_ISDIR(st.st_mode));
}
/* We allow “recursive“ symbolic links. Only within reason though. */
#define MAXDEPTH 5
/*
* Return the real path (i.e. absolute path with symlinks resolved
* and extra slashes removed) equivalent to the specified path. (If
* you want an absolute path but don‘t mind links use
* absolute_path().) The return value is a pointer to a static
* buffer.
*
* The input and all intermediate paths must be shorter than MAX_PATH.
* The directory part of path (i.e. everything up to the last
* dir_sep) must denote a valid existing directory but the last
* component need not exist. If die_on_error is set then die with an
* informative error message if there is a problem. Otherwise return
* NULL on errors (without generating any output).
*
* If path is our buffer then return path as it‘s already what the
* user wants.
*/
static const char *real_path_internal(const char *path int die_on_error)
{
static char bufs[2][PATH_MAX + 1] *buf = bufs[0] *next_buf = bufs[1];
char *retval = NULL;
/*
* If we have to temporarily chdir() store the original CWD
* here so that we can chdir() back to it at the end of the
* function:
*/
char cwd[1024] = ““;
int buf_index = 1;
int depth = MAXDEPTH;
char *last_elem = NULL;
struct stat st;
/* We‘ve already done it */
if (path == buf || path == next_buf)
return path;
if (!*path) {
if (die_on_error)
die(“The empty string is not a valid path“);
else
goto error_out;
}
if (strlcpy(buf path PATH_MAX) >= PATH_MAX) {
if (die_on_error)
die(“Too long path: %.*s“ 60 path);
else
goto error_out;
}
while (depth--) {
if (!is_directory(buf)) {
char *last_slash = find_last_dir_sep(buf);
if (last_slash) {
last_elem = xstrdup(last_slash + 1);
last_slash[1] = ‘\0‘;
} else {
last_elem = xstrdup(buf);
*buf = ‘\0‘;
}
}
if (*buf) {
if (!*cwd && !getcwd(cwd sizeof(cwd))) {
if (die_on_error)
die_errno(“Could not get current working directory“);
else
goto error_out;
}
if (chdir(buf)) {
if (die_on_error)
die_errno(“Could not switch to ‘%s‘“ buf);
else
goto error_out;
}
}
if (!getcwd(buf PATH_MAX)) {
if (die_on_error)
die_errno(“Could not get current working directory“);
else
goto error_out;
}
if (last_elem) {
size_t len = strlen(buf);
if (len + strlen(last_elem) + 2 > PATH_MAX) {
if (die_on_error)
die(“Too long path name: ‘%s/%s‘“
buf last_elem);
else
goto error_out;
}
if (len && !is_dir_sep(buf[len - 1]))
buf[len++] = ‘/‘;
strcpy(buf + len last_elem);
free(last_elem);
last_elem = NULL;
- 上一篇:华为 GTM900才模块资料大全
- 下一篇:测地距离—来自science杂志
相关资源
- uboot到linux logo显示不间断 补丁
- UNIX/LINUX编程实践教程的源码
- Linux任务管理器
- linux应用层的华容道游戏源代码
- ubuntu9.10 可加载内核模块和字符设备驱
- MP3文件ID3v2ID3v2APEv2标签读取
- 操作系统实验——虚存管理实验
- linux下的发包工具sendip
- 尚观培训linux许巍关于c 的笔记和讲义
- 尚观培训linux董亮老师关于数据结构的
- linux 线程池源码 c 版
- linux C 电梯程序练习
- linux下用多进程同步方法解决生产者
- Linux 操作系统实验(全)
- Linux From Scratch 中文手册
- linux 网络实验 ftp程序
- Linux命令大全离线版&在线版
- 操作系统共享内存实验
- dos 下运行Linux 命令--gnu_utils
- linux 0.12内核源代码
- linux简易shell C实现
- linux实验报告及心得体会
- 基于GTK的Linux环境下的简易任务管理器
- linux扫雷游戏代码
- CAN Linux驱动代码
- Linux系统教材
- intel 82579LM 网卡驱动Linux系统版 v1.9.
- SA1110处理器掌上电脑液晶显示器设计
- 基于Linux的串口服务器设计
- Windows下访问LINUX的利器-SSH
评论
共有 条评论