
git学习
朱乐乐在路上
Smile as always
展开
-
Git 教學(2):Git Branch 的操作與基本工作流程[作者:好麻烦部落格]
http://gogojimmy.net/2012/01/21/how-to-use-git-2-basic-usage-and-worflow/Git branchbranch (分支)應該是 Git 最重要的技能了,在一個多人專案的開發過程中我們有時候要開發新功能,有時候是要修正某個Bug,有時候想要測試某個特異功能能不能 work ,這時候我們通常都會從主 branch转载 2015-01-15 11:07:38 · 658 阅读 · 0 评论 -
git branch
git分支的简单操作转载 2015-01-14 22:12:44 · 737 阅读 · 0 评论 -
git 忽略目标文件
最近使用git在push的时候发现有的目标文件太大了。我采用的方法是修改本地仓库的设置,不影响全局设置。vim .git/info/exclude在里面添加了目标文件类型。或者编辑.gitignore文件忽略特定文件类型的文件。这个与.git目录放在同一级就可以。原创 2014-12-08 15:42:01 · 756 阅读 · 0 评论 -
Pushing to Git returning Error Code 403 fatal: HTTP request failed
I just got the same problem and just figured out what's cause.Github seems only supports ssh way to read&write the repo, although https way also displayed 'Read&Write'.So you need to change yo转载 2015-01-20 16:41:31 · 923 阅读 · 0 评论 -
Pushing to Git returning Error Code 403 fatal: HTTP request failed 新解决办法
很多人遇到这个错误就不用http而改用ssh了,其实这并不方便,改用ssh的方法我已经转载在我的博客里面。大家可以参看,要流血流汗的。我这里用的方法是还是用http的方法首先vim .git/config修改[remote "origin"] url = https://github.com/xxx/example.gi原创 2015-01-20 17:04:20 · 2678 阅读 · 1 评论