
GIT
ryan_xing
这个作者很懒,什么都没留下…
展开
-
git 教程
关于作者 廖雪峰,十年软件开发经验,业余产品经理,精通Java/Python/Ruby/Visual Basic/Objective C等,对开源框架有深入研究,著有《Spring 2.0核心技术与最佳实践》一书,多个业余开源项目托管在GitHub http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b80原创 2015-01-28 17:02:20 · 319 阅读 · 0 评论 -
GIT安装与操作
GIT安装与操作 git是为了帮助管理Linux内核开发而开发的一个开源的分布式版本控制系统。 一.git安装 1.1git在linux下安装 在终端下运行如下命令 sudo apt-get install git sudo apt-get install git-core 1.2git的跟新 gitclone git://git.kernel.原创 2015-01-12 15:01:54 · 435 阅读 · 0 评论 -
git push 失败
在本地仓库使用 git push 命令时出现一下错误 remote: error: refusing to update checked out branch: refs/heads/master remote: error: By default, updating the current branch in a non-bare repository remote: error: is de原创 2015-06-12 14:00:43 · 1046 阅读 · 0 评论 -
git 创建 tag 命令
1.创建 git tag -a tagname -m "comments" //本地创建 2.删除 git tag -d tagname //本地删除 3.修改 git tag -f new_name old_name git tag -d old_name 4.查看 git tag -l n1(n1表示注释显示一行)原创 2015-06-12 14:05:07 · 4815 阅读 · 0 评论