Re: [git-users] Can I use GitHub ?

2013-08-30 Thread TC Wan
On Friday, August 30, 2013 2:36:30 PM UTC+8, Kyle Gordon wrote: > > Hi, > > Yes, you should be able to integrate Eclipse with Github, using the Git > plugin here http://eclipse.github.com > > I am using the latest version of Eclipse CDT Kepler which comes with Git support already built in. It w

Re: [git-users] git branch : strange !

2013-08-30 Thread Dale R. Worley
> From: djsuperfive > Why do I have a change to add on master whereas I made this change on my > branch "dev" ? I think I can explain this more clearly: You changed a file, but since you didn't add or commit it, none of the branches is affected. git-status is just telling you that the file in

Re: [git-users] git branch : strange !

2013-08-30 Thread William Seiti Mizuta
Hi, git doesn's save changes in a branch. Only commits are saved in an specific branch. So, if you have a change in a file and change the branch, this change will be at the new branch. If you don't want it, you need to commit or stash the change before changing branch. If changing a branch will c

Re: [git-users] git branch : strange !

2013-08-30 Thread Gergely Polonkai
Hello, braches hold only commited changes (actually, they are pointers to one specific commit). Uncommited changes "travel" between checkouts (well, unless the target branch is in a totally different state, as then you will face even stranger merge issues). So take this advise: never checkout anot

[git-users] git branch : strange !

2013-08-30 Thread djsuperfive
Hi ! I'm learning git and have a strange issue with a simple branch scenario: I created a new local branch "dev". So now I have two local branches: master and dev.On master, everything isup to date: nothing to add, nothing to commit. I've checked out the branch "dev" and made a change in one fi

[git-users] Re: git log takes lot of time

2013-08-30 Thread dexter ietf
On Friday, August 30, 2013 11:21:05 AM UTC+5:30, Thomas Ferris Nicolaisen wrote: > On Thursday, August 29, 2013 6:52:38 PM UTC+2, dexter ietf wrote: > >> this is my git repo size, why does git log takes such huge time and how >> do i improve the time. >> >> >> real 0m35.603s >> user0m08.