
git
DreamSoar
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
关于git配合tortoiseGit的基础使用
http://www.cnblogs.com/ssor/archive/2012/02/04/2337823.htmlgit确实比svn好用的多了,最起码只有一个文件夹用来标记版本信息比svn所有文件夹下都要放一个文件夹来标记版本信息先进多了,不然你不想要版本管理这些文件的时候,删除起来能类似你(不采用什么特别方法或者工具的话)。首先安装windows版的git,然后安转载 2015-05-14 16:19:22 · 711 阅读 · 0 评论 -
Git相关知识整理
http://zhuxy.com/learn/2014/01/20/something-about-git/Git常用命令备忘Git配置git config --global user.name "xxx" # 设置用户名,会在log里面显示git config --global user.email "[email protected]" # 设置转载 2015-05-14 16:41:11 · 330 阅读 · 0 评论 -
git 中怎样查看未传送(git push)到远程代码库的(git commit)提交?
http://bbs.iaixue.com/forum.php?mod=viewthread&tid=1577 总结:可以查看已经commit 但是还没有push 的代码git log master ^origin/master-------------------------------------------------------------------转载 2015-05-26 19:13:58 · 27336 阅读 · 1 评论 -
GIT的使用
http://www.cnblogs.com/wang_yb/p/3867221.htmlgit 配置文件git的配置文件位置针对所有用户:/etc/gitconfig针对当前用户: ~/.gitconfig查看配置的方法git config --list修改配置的方法git config --global user.name "wa转载 2015-06-18 18:03:50 · 315 阅读 · 0 评论