git学习
大唐游子
这个作者很懒,什么都没留下…
展开
-
在cygwin下执行shell脚本遇到“ $‘\r‘: 未找到命令”错误
在cygwin下执行shell脚本遇到“ $’\r’: 未找到命令”错误从github上克隆一个工程到本地,在cygwin下执行工程目录中的sh脚本,遇到以下报错:$'\r': 未找到命令推测时换行符问题。参考Git 多平台换行符问题(LF or CRLF),重新设置git的换行符配置:# 提交检出均不转换 (保持为LF)git config --global core.autocrlf false重新克隆工程,在cygwin中执行sh脚本成功。参考...原创 2022-03-03 07:00:29 · 640 阅读 · 0 评论 -
15分钟学会使用Git和远程代码库
原文地址: http://blog.nicoschuele.com/?p=219译文链接: http://blog.jobbole.com/53573/译者信息: 伯乐在线-cjpangit是个了不起但却复杂的源代码管理系统。它能支持复杂的任务,却因此经常被认为太过复杂而不适用于简单的日常工作。让我们诚实一记吧:Git是复杂的,我们不要装作它不是。但我仍然会试图教会你用转载 2014-03-30 14:53:17 · 966 阅读 · 0 评论 -
git learning
Git learning.GlossaryCloneA clone is a copy of a repository that lives on your computerinstead of on a website's server somewhere, or the act of making thatcopy. With your clon原创 2014-10-09 23:17:18 · 776 阅读 · 0 评论 -
git push origin master
git push origin master的意思是:What is git push origin masterThis is a command that says “push the commits in the local branch named master to the remote named origin”. Once this is executed, all the stuff原创 2015-08-11 17:31:16 · 1206 阅读 · 0 评论 -
学习git的好资源
git - 简明指南 图解Gitgit - 简明指南 这里简单明了地介绍了git的主要命令,平时要用的基本都包含了,2分钟看完,就会用git了!图解Git 用图形象地介绍了git的原理和命令,对理解git很有帮助。原创 2017-01-06 22:28:24 · 645 阅读 · 0 评论