Yii moved to GitHub
#21
Posted 20 February 2012 - 02:27 AM
http://nfarina.com/p.../git-is-simpler
#22
Posted 20 February 2012 - 06:10 AM
Mike, on 20 February 2012 - 02:27 AM, said:
http://nfarina.com/p.../git-is-simpler
Great article! Added it to the wiki page.
#23
Posted 20 February 2012 - 02:14 PM
Just my opinion of course :-)
#24
Posted 22 February 2012 - 08:23 AM
#25
Posted 24 February 2012 - 07:37 PM
Da:Sourcerer, on 22 February 2012 - 08:23 AM, said:
Your branch is not realy "in sync" it is only merged into somehow. Since you once have broken you master branch by committing changes that you did yourself (seems to be some kind of rebase) you cannot use your master branch anymore. Even if the files are the same and the commits look the same they have a differen hash because they depend on other commits than the ones in the yii original repo. the commit hash is generated by the whole content of a commit and though is unique. If you have the same commit hash you really have the same commit with same changes, same author, same parent commit etc...
The problem is that once you have pushed to github you are not able to revert/change history of a branch anymore, github does not allow that (for good reasons btw).
One thing you can do is set up a new branch, call it master2 or something like that and use it instead of master.
But you do not need to do that you can simply start new branches for pull requests with the following commands:
(I asume that your own fork is the 'origin' remote and the yiisoft/yii repo is the 'upstream' remote like it's in the github tutorial on forking)
git fetch upstream git checkout upstream/master git checkout -b name-of-your-new-branch
If you want to setup your master2, do the same with branch name master2.
Everything clear? Ask if there are questions
#26
Posted 25 February 2012 - 06:12 AM
#27
Posted 25 February 2012 - 06:24 AM
Quite simply the most unforgiving VCS there is.
Good thing is that there is tons of good docs.
#29
Posted 05 March 2012 - 02:46 AM
And they even banned that guy account as "he was trolling"... when in fact he was showing his point that GitHub is bugged big time....
#30
Posted 05 March 2012 - 04:08 AM
Github have unsuspended the guy's account now, I think they dealt with it pretty reasonably to be honest, at least it wasn't a permanent ban.
#31
Posted 07 March 2012 - 03:24 PM
#32
Posted 07 March 2012 - 04:13 PM
#33
Posted 20 March 2012 - 09:16 AM
On this website, the Yii download link http://yii.googlecod...10.r3566.tar.gz points to googlecode and his date is Feb 12, 2012.
If I want a more updated version of Yii (saying the one with that issue fix or that absolutely must have gii feature, can I get them by simply downloading the zip tarball from Github or have I to deal with some git commands ?
Thanks.
Let's go !
#34
Posted 20 March 2012 - 09:54 AM
To get a version with the issue fixed you can use the github zip file... but you need to understand that this is a development version... it can happen that an another issue is possibly under development and not functional...
If you want just the fix for a specific issue then you can get just those files fixed with that issue and replace the one in the release version.
#37
Posted 03 April 2012 - 03:55 PM
#38
Posted 03 April 2012 - 05:37 PM
Rangel Reale, on 03 April 2012 - 03:55 PM, said:
Not needed, Github has built-in SVN support: https://github.com/b...-client-support
#39
Posted 27 April 2012 - 03:17 AM
#40
Posted 03 May 2012 - 05:46 AM

Help
















