2,559 reputation
1417
bio website github.com/n3v1k
location
age
visits member for 7 months
seen 1 hour ago
stats profile views 78

2d
comment Incorporating a fork's contributions into your own repo — permission required?
@NathanCouch gnu.org/licenses/gpl.html
May
20
reviewed Approve suggested edit on Running simple code with AndEngine
May
20
reviewed Approve suggested edit on Yii dataProvider the data order given by an array
May
20
reviewed Approve suggested edit on Redirect on admin Save
May
20
reviewed Approve suggested edit on How to I align the right container with the left container in terms of top margin?
May
20
revised Incorporating a fork's contributions into your own repo — permission required?
edited tags
May
20
comment Incorporating a fork's contributions into your own repo — permission required?
that is github-specific markup an "@" sign directly followed by a person's github name will be linked to their account. See this Github help article for more details
May
20
revised Incorporating a fork's contributions into your own repo — permission required?
make title meaningful
May
20
answered Incorporating a fork's contributions into your own repo — permission required?
May
20
reviewed Reject suggested edit on Sencha Touch App crashes on Windows Phone 8
May
20
reviewed Approve suggested edit on How can i specify SSL version in curb
May
20
reviewed Approve suggested edit on Knowing if activity is running on foreground or background
May
17
comment Very slow for git checkout and other git features
@user2393201: again, that is something we cannot determine here. It warrants close scrutiny of your specific setup. Regarding any limitation or quota, that is something your system or network administrator can help you with.
May
17
comment Very slow for git checkout and other git features
@user2393201: there could be any number of reasons, e.g. your Git repo being cluttered or not properly packed; your hard drive being slow, worn-out or otherwise busy; if checkout happens over network, slow or overly used network; cpu being busy doing other stuff. In short, without inspecting your hardware, setup and git repo in particular, it's very difficult to find an answer for you
May
17
comment Very slow for git checkout and other git features
It might not be a good idea to use Git for stuff like that in the first place. If you have that huge a repo, I assume you have lots of big (binary) files -- which is something Git is really terrible at handling.
May
17
comment Very slow for git checkout and other git features
the "normal" times of 0.5-1 hr you describe are extremely long for normal Git repositories. Are you working with really huge repos? Why do your operations take so long in general?
May
16
comment How to move HEAD to other branch in Git without checking out files or updating any refs?
@twalberg: a detached HEAD is when HEAD is not a symbolic reference pointing to a branch, but instead pointing directly to a commit. while that part of the sentence might have been imprecise, HEAD shall always point to the currently checked-out commit, directly or via a branch reference
May
16
comment How to move HEAD to other branch in Git without checking out files or updating any refs?
that is exactly what switching branches (branch+checkout or checkout -b) is for: 1. git checkout -b NEWBRANCH, 2. git add (possibly with -A switch to add deletions) and git commit
May
16
comment How to move HEAD to other branch in Git without checking out files or updating any refs?
if you only want to create a new branch, git checkout -b BRANCHNAME will do that without touching the working copy
May
16
answered How to move HEAD to other branch in Git without checking out files or updating any refs?