Found 37 matching messages (0.113 seconds). Page 1 of 2.
... looks like this: [remote "origin"] url = /repos/git/project fetch = refs/heads/*:refs/remotes/origin ... like this: [remote "origin"] url = /repos/git/project fetch = refs/heads/master:refs/remotes ...
git - Junio C Hamano - Feb 7 2007 - 20:48
... effect this. >So the current "git clone" (if you are using ... like this instead: > > URL: /repos/git/project > Pull: refs/heads/master ... this: > > [remote "origin"] > url = /repos/git/project > fetch = refs/heads/*:refs ...
git - Bill Lear - Feb 8 2007 - 11:27
... something >> like this instead: >> >> URL: /repos/git/project >> Pull: refs/heads/master:refs/remotes/ ... like this: >> >> [remote "origin"] >> url = /repos/git/project >> fetch = refs/heads/*:refs/remotes/ ...
git - Jakub Narebski - Feb 8 2007 - 11:56
... right branch, you know that "git reset" is your friend to ... all), you can
just do
git reset --hard ORIG_HEAD
and you ... your favourite history viewer is (git
log, qgit, whatever), and you ... commit by hand, and do
git reset --hard git - Linus Torvalds - Feb 8 2007 - 13:27
... their work from the remote 'origin': git checkout topic hack hack hack ... I just want to build it. git checkout origin/topic build build build ... v1.4 using separate remotes is: git checkout -b topic origin/topic ...
git - Jeff King - Feb 8 2007 - 19:24
... trouble I'm having with git just happened again. I have ... events: Starting on topic branch: % git commit -a -m "Fix spacing ... to master, I do this:] % git pull Trying really trivial in ... Changed but not updated: # (use git-update-index to mark for ...
git - Bill Lear - Feb 7 2007 - 20:18
... looks like this: > > [remote "origin"] > url = /repos/git/project > fetch = refs/heads/*:refs/remotes/ ... like this: > > [remote "origin"] > url = /repos/git/project > fetch = refs/heads/master:refs/ ...
git - Alexander Litvinov - Feb 8 2007 - 00:28
... seem to work wonderfully --- one 'git pull' and my entire repo is ... master branch before I do git pull (this, however, as it ... . We really do enjoy using git --- very cool, fast, and flexible. ... list: send the line "unsubscribe git" in the body of a ...
git - Bill Lear - Feb 8 2007 - 17:57
... run from the master branch? Actually, git does that all correctly for ... initial clone with the new git version - if you use a ... -rc kernels are (and actually, git "master" in general), there's ... list: send the line "unsubscribe git" in the body of a ...
git - Linus Torvalds - Feb 8 2007 - 18:13
... you are on branch 'master', "git pull" fetches and merges 'origin ... behavior is the same. In > git, if I am on master ... http://www.fieldses.org/~bfields/git-user-manual.html, browse GitWiki ... We should really update http://git.or.cz/gitwiki/GitWorkflows ... but ...
git - Jakub Narebski - Feb 8 2007 - 18:29
... run from the master branch? > >Actually, git does that all correctly for ... branches too, but only in >git-1.5. > >... >So it might be ... very, very happy about in git is the ability to quickly ... not, I have solved actual git problems in our company by ...
git - Bill Lear - Feb 8 2007 - 18:33
... the initial clone with the new >git version - if you use a new ... a bare one) to the new git by first installing the new git, and then doing this: % cd /repos/git % mv project project.old_git % ... list: send the line "unsubscribe git" in the body of a ...
git - Bill Lear - Feb 8 2007 - 19:25
... a bare one) to the new git by first >> installing the new git, and then doing this: >> >> % cd /repos/git >> % mv project project.old_git ... we have installed the new git, they will need to set ... list: send the line "unsubscribe git" in the body of a ...
git - Bill Lear - Feb 8 2007 - 19:40
... for the *shared* repositories, the git-1.5 changes really don' ... too lazy to start editing .git/config files and setting things ... org:/pub/scm/linux/kernel/git/josh/sparse ... (that "cat old ... and-paste for the subsequent "git clone" ;^). And yes, I did ...
git - Linus Torvalds - Feb 8 2007 - 19:46
... , depending on your knowledge level with git. You can actually use the old developer repositories with the newer Git without doing anything specific to upgrade ... git://server/proj proj cd proj git fetch ../old_proj topicA:topicA [topicB:topicB ...
git - Shawn O. Pearce - Feb 8 2007 - 19:50
... bare one) to the new git by first >>> installing the new ... company repo? Nope. 1. New git works with old repositories, and ... script in contrib area of git, or http://repo.or.cz ... layout to new layout using "git branch -m" command: 'refs/heads ...
git - Jakub Narebski - Feb 8 2007 - 20:03
... +DEFAULT BEHAVIOUR +----------------- + +Often people use `git pull` without giving any parameter. + ... this has been equivalent to saying `git pull +origin`. However, when configuration ` ... on the command line, then `git pull` +uses the refspec from ...
git - Junio C Hamano - Feb 8 2007 - 20:53
... git-command The most commonly used git commands are: add Add file contents ... -2.6} [master] 40% tail .git/config [user] name = Theodore Ts'o ... = http://bughost.org/repos/iwlwifi.git/ fetch = +refs/heads/*:refs/remotes/ ...
git - Theodore Tso - Feb 8 2007 - 21:48
... -0500, Shawn O. Pearce wrote: > > git config alias.new "gitk --all --not ... command, nor is there a 'git-gitk'. So we cannot execute it ... a horrible error message. Symlink git-gitk to gitk and it ... list: send the line "unsubscribe git" in the body of a ...
git - Shawn O. Pearce - Feb 8 2007 - 21:58
... Updated but not checked in", then this: > >git reset --hard > >It's probably explained in ... check). Hmm ... from my topic branch: % git reset -hard Usage: /usr/bin/git-reset ... from this list: send the line "unsubscribe git" in the body of a message ...
git - Bill Lear - Feb 7 2007 - 20:24