[git-users] I can't figure out how the checkout works

2022-05-23 Thread Mike Andyl
I am a newbie and installed GIT on *Android Studio*. I made some changes and comits. After 3 I did a *Revert*. Now if I make a change and checkout to rollback 3 or 1, I get asked for local changes ( *shelve*) But if I do checkout to 2, then no questions and I see the code as it was on Revert

[git-users] Hook that fires on git reset

2016-03-04 Thread Mike Lewis
Is there any hook that fires when a git reset command is issued? The natural assumption would be the post-rewrite hook, since part of the history is being rewritten, but it does not, both according to the official documentation and some experiments that I've run. The hook doesn't necessarily

[git-users] Anyway to tell if a remote origin has been updated and pull those updates without a cron job?

2016-01-31 Thread mike r
Hello Gitters, this is a pretty simple question but just wanted to clarify, Im building some workflow to build a NGINX web server using Puppet, that uses a 'index.html' page located on a github .git repo my local laptop has this .git as a remote and pulls in the index.html to build the Nginx

[git-users] How to handle a longrunning branch

2015-11-17 Thread mike
Hi, I have had a branch, feature_xyz, for a long time ( yes I know I should not but it was not my call). Problem is I have not updated it with changes from master. So I started to do a regular rebase ( i want to keep history): git fetch origin master git rebase origin/master After a while

Re: [git-users] How to handle a longrunning branch

2015-11-17 Thread mike
Den tisdag 17 november 2015 kl. 19:40:15 UTC+1 skrev Konstantin Khomoutov: > > On Tue, 17 Nov 2015 10:02:03 -0800 (PST) > mike <mikaelp...@hotmail.com > wrote: > > > I have had a branch, feature_xyz, for a long time ( yes I know I > > should not but it was n

[git-users] Unable to Clone Repository With Files that Contain ~

2015-01-08 Thread Mike Rawdon
/Pat/mitrend/test/BadTildeRepo (master) $ ls fileWith~init.txt normalFilename.txt /test/BadTildeRepo (master) $ git --version git version 1.9.5.msysgit.0 Thanks, Mike Rawdon -- You received this message because you are subscribed to the Google Groups Git for human beings group. To unsubscribe

[git-users] HEAD is not pointing to a branch

2012-06-27 Thread mike
' and I get the following message: HEAD is not pointing to a branch Any ideas why I get this? How can I handle it? Here is repos that I am using: git://eclipse-ccase.git.sourceforge.net/gitroot/eclipse-ccase/eclipse-ccase br, //mike -- You received this message because you are subscribed

Re: [git-users] HEAD is not pointing to a branch

2012-06-27 Thread mike
it from Eclipse? ( Attach picture from Eclipse). br, //mike -- Serge Matveenko se...@matveenko.ru http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- You received this message because you are subscribed to the Google Groups Git for human beings group

Re: [git-users] HEAD is not pointing to a branch

2012-06-27 Thread mike
! //mike On Wednesday, June 27, 2012 1:41:41 PM UTC+2, Thomas Ferris Nicolaisen wrote: On Wednesday, June 27, 2012 12:38:07 PM UTC+2, mike wrote: You've just checked out a commit as your HEAD that is the head of the origin/master branch. But you need to checkout a new branch master

[git-users] Branching/Merging workflow help

2012-05-14 Thread mike
way work that would be more suitable for a small group? br, //mike -- You received this message because you are subscribed to the Google Groups Git for human beings group. To view this discussion on the web visit https://groups.google.com/d/msg/git-users/-/RkBqvqkFV1YJ. To post to this group

[git-users] Re: fsck errors on newly cloned, newly imported git repository

2010-10-28 Thread Mike
On Oct 26, 7:05 am, Michael P. Soulier msoul...@digitaltorque.ca wrote: On 24/10/10 Mike said: This weekend we're cutting over to use git for our source code control system.  I've imported about 20 years worth of previous history using git cvsimport (takes about four hours).  I then cloned

[git-users] git svn workflow

2009-09-04 Thread Mike Lowry
I'm using git locally and interfacing with an svn repo. My workflow is something like: git checkout master git svn rebase #pull svn changes git checkout -b myfeature #create local branch for hacking #hack hack hack my feature git commit -a