active questions tagged git - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:15:11Z http://stackoverflow.com/feeds/tag/git http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks 30 What are your favorite git features or tricks? Scotty Allen 2008-12-07T18:46:14Z 2009-11-27T02:32:04Z <p>What are your favorite git features or tricks, or even workflows? Post one feature, trick, or workflow per answer.</p> http://stackoverflow.com/questions/1404796/how-to-get-the-latest-tag-name-in-current-branch-in-git 2 How to get the latest tag name in current branch in Git? culebrón 2009-09-10T11:43:39Z 2009-11-26T21:40:27Z <p>What's the simplest way to get the most recent tag in Git?</p> <pre><code>git tag a HEAD git tag b HEAD^^ git tag c HEAD^ git tag </code></pre> <p>output:</p> <pre><code>a b c </code></pre> <p>Should I write a script to get each tag's datetime and compare them?</p> http://stackoverflow.com/questions/1803748/how-to-build-a-web-app-with-git-front-end-utils 0 How to build a web App with Git front end utils ? lakshmanan 2009-11-26T13:45:18Z 2009-11-26T15:47:12Z <p>Hi, </p> <p>I know how to work in git. But, now I want to set up a git server in my org. so that developers can access it via internet from any where around the globe. I know about Github and I want to build my own custom git server for my organisation developers alone and I donot wish to outsource it to git hub like apps.</p> <p>I need to provide browser based front end apart from console based. My server machine have windows Operating system.</p> http://stackoverflow.com/questions/284514/what-is-a-git-topic-branch 6 What is a git topic branch? skiphoppy 2008-11-12T16:32:35Z 2009-11-26T14:57:59Z <p>What is a git topic branch? Does it differ from an ordinary branch in some way? Are there any branches that are not topic branches?</p> http://stackoverflow.com/questions/1797074/local-executing-hook-after-a-git-push 1 Local executing hook after a git push? scotchi 2009-11-25T13:58:15Z 2009-11-26T08:51:31Z <p>I've looked at <a href="http://www.kernel.org/pub/software/scm/git/docs/githooks.html" rel="nofollow">the githooks manpage</a> but unless I'm missing something I don't see an option for local, post-push git hooks. I'd like to have one that updates the api docs on my web server (for which I already have a script) after I push the master branch to the GitHub repo. Of course I could just write my own script that combines the git push and the api docs run, but that feels somewhat inelegant.</p> http://stackoverflow.com/questions/1800783/compare-local-git-branch-with-remote-branch 1 compare local git branch with remote branch? mrblah 2009-11-25T23:58:17Z 2009-11-26T01:50:17Z <p>how can I see a diff between a local branch and a remote branch?</p> http://stackoverflow.com/questions/1800859/how-can-i-change-the-remote-target-repository-url-on-windows 0 How can I change the remote/target repository URL on Windows? tepidsam 2009-11-26T00:14:39Z 2009-11-26T00:58:09Z <p>I created a local GIT repository on Windows. Let's call it AAA. I staged, committed, and pushed the contents to GitHub. git@github.com:username/AAA.git </p> <p>I realized I made a mistake with the name.</p> <p>On GitHub, I renamed it to git@github.com:username/BBB.git </p> <p>Now, on my Windows machine, I need to change this git@github.com:username/AAA.git to this git@github.com:username/BBB.git because the settings are still trying to "push" to git@github.com:username/AAA.git but I need to push to git@github.com:username/BBB.git now.</p> <p>How could I do that?</p> <p>Cheers!</p> <p>Sammy</p> http://stackoverflow.com/questions/1778518/not-able-to-create-repository 1 Not able to create repository RPK 2009-11-22T12:05:47Z 2009-11-25T22:18:33Z <p>I installed GIT and Cygwin GIT client. When command window opens, and $ prompt appears, I type in:</p> <p>Git Init</p> <p>It says:</p> <p>Baash: Command not found.</p> http://stackoverflow.com/questions/1799891/why-do-i-get-a-warning-after-i-say-git-commit 1 Why do I get a warning after I say "git commit ." iHeartDucks 2009-11-25T20:57:25Z 2009-11-25T22:06:49Z <p>Hi,</p> <p>I get the error below after I run "git commit ."</p> <pre><code>CSApprox needs gui support - not loading. See :help |csapprox-+gui| for possible workarounds. Error detected while processing /Users/{username}/.vim/plugin/syntastic.vim: line 94: E319: Sorry, the command is not available in this version: sign define SyntasticError text=&gt;&gt; texthl=error line 95: E319: Sorry, the command is not available in this version: sign define SyntasticWarning text=&gt;&gt; texthl=todo Press ENTER or type command to continue error: There was a problem with the editor 'vi'. Please supply the message using either -m or -F option. </code></pre> <p>Any ideas why this might be happening? I am on a mac.</p> <p>Thanks for your help. </p> http://stackoverflow.com/questions/1800087/git-merge-recursive-not-doing-what-i-want 1 Git merge recursive not doing what I want. unknown (google) 2009-11-25T21:29:06Z 2009-11-25T21:37:19Z <p>Is there a way to have Git force a manual resolution for a file when the file was edited in both branches?</p> <p>My problem is that I want some of the changes from one branch and some of the changes from the other. It turns out these changes don't always step on each other but the algorithm is not always picking the correct change.</p> <p>One thing I notice, is the base file in the 3-way merge isn't what I was expecting. Is it possible to have Git use a chosen file from one branch as the base?</p> http://stackoverflow.com/questions/1799941/how-can-i-get-the-upstream-repository-of-a-cloned-repository 1 How can I get the upstream repository of a cloned repository? seth 2009-11-25T21:05:36Z 2009-11-25T21:13:21Z <p>Say someone clones repository A which results in repository B and then I clone repository B, is there a way to determine what the upstream repository (i.e. repository A) is? I know that github shows the 'forked from blah/blah' but I'm not using github for this project.</p> <p>The reason I ask is that I'd like to get all the changes that the person made in a single diff file.</p> <p>In subversion I could just do <code>svn log --stop-on-copy</code> to get the first commit and then <code>svn diff -rXXXX:HEAD</code> where XXXX is the first revision of the branch to get a diff with all the changes. I know that branching and cloning aren't quite the same thing but I wanted to provide what I was after ultimately. Doing a diff on the upstream repo and the cloned repo seemed the way to go but I might be wrong.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1798117/pulling-branch-gets-unable-to-connect-error 0 Pulling branch gets unable to connect error stimms 2009-11-25T16:23:39Z 2009-11-25T16:23:39Z <p>I was hoping somebody might be able to give me a hand by pointing out where I'm going wrong with github. I have my branch cloned down to my machine and I'm attempting to fetch from another user's branch on github.</p> <pre><code>&gt;git remote add rally25rs git://github.com/rally25rs/SubSonic-3.0.git &gt;git fetch rally25rs master github.com[0: 207.97.227.239]: errorno=No error fatal: unable to connect a socket (No error) </code></pre> <p>As far as I can tell this is the correct procedure. </p> http://stackoverflow.com/questions/379081/track-all-remote-git-branches-as-local-branches 7 Track all remote git branches as local branches. Janson 2008-12-18T20:11:55Z 2009-11-25T14:23:24Z <p>Tracking a single remote branch as a local branch is straightforward enough. </p> <pre><code>$ git checkout --track -b ${branch_name} origin/${branch_name} </code></pre> <p>Pushing all local branches up to the remote, creating new remote branches as needed is also easy.</p> <pre><code>$ git push --all origin </code></pre> <p>I want to do the reverse. If I have X number of remote branches at a single source: </p> <pre><code>$ git branch -r branch1 branch2 branch3 . . . </code></pre> <p>Can I create local tracking branches for all those remote branches without needed to manually create each one? Say something like:</p> <pre><code>$ git checkout --track -b --all origin </code></pre> <p>I've googled and RTMs, but have come up bunk thus far. </p> http://stackoverflow.com/questions/1794196/working-copy-is-on-master-branch-how-to-update-from-remote-server 0 working copy is on master branch, how to update from remote server? mrblah 2009-11-25T01:59:54Z 2009-11-25T13:38:21Z <p>My working copy is on master branch, how to update from remote server?</p> <p>Say I working locally on my own custom branch, but I want to update the master with the remote branch, how would I do that?</p> http://stackoverflow.com/questions/1792838/enable-ident-string-for-git-repos 0 Enable ident string for Git repos pean 2009-11-24T20:49:29Z 2009-11-25T12:39:47Z <p>How do I enable ident $Id$ on files in a Git repository?</p> http://stackoverflow.com/questions/1788646/matlab-simulink-version-control-with-multiple-developers 2 Matlab Simulink version control with multiple developers Jon Mills 2009-11-24T08:26:29Z 2009-11-25T12:24:56Z <p>We're using Matlab Simulink for model development (and Real-Time Workshop autocoding) within a team of several developers.</p> <p>We currently use Visual Source Safe (yes, I know its terrible) for version control, using locks to prevent conflicting changes.</p> <p>We'd like to migrate our programme to a different version control system (svn, hg or git), but we're concerned about performing merges and diffs on Simulink .mdl files.</p> <p>Does anybody have useful experience in performing merges on Simulink files?</p> http://stackoverflow.com/questions/1796049/how-to-use-tortoise-git-without-a-server-local-single-user 1 how to use tortoise git without a server (local single user) pastacool 2009-11-25T10:33:41Z 2009-11-25T11:38:49Z <p>hi guys!</p> <p>i'm looking for a simple tutorial for how to use tortoisegit without any server? i've tried google but, although a lot of people mention you can use tortoisegit without a server, no one explains how to do it so any help is greatly appreciated!</p> <p>kind regards, reinhard</p> http://stackoverflow.com/questions/1796012/how-to-use-git-to-migrate-svn-repository 0 How to use Git to migrate SVN repository Jesper Rønn-Jensen 2009-11-25T10:27:15Z 2009-11-25T10:34:04Z <p>Somebody is planning to move the subversion repository I work on (8000+ commits).</p> <p>Is there a way to use git-svn to replay the last, say, 20 commits from the old location once the migration is finished?</p> <p>(not only my own commits, but also other team members)</p> <p>Bonus question: How do I add multiple svn repositories to my git local copy?</p> http://stackoverflow.com/questions/1795214/git-svn-clone-errors-using-git-1-5-1-and-1-6-5-and-subversion-1-4-2 0 git-svn clone Errors using git 1.5.1 and 1.6.5 and Subversion 1.4.2 jkndrkn 2009-11-24T18:07:03Z 2009-11-25T07:26:39Z <p>Hello, I am trying to integrate git into my workflow. I'm starting it by using it to manage working copies of code cloned off of a Subversion repository. </p> <p>I've tried using both git 1.5.1 and 1.6.5. Both of these were built from source. I am using an official Debian package for Subversion. Using both versions of git yields the same error as seen below.</p> <pre><code>$ svn --version svn, version 1.4.2 (r22196) compiled Aug 6 2009, 16:45:47 Copyright (C) 2000-2006 CollabNet. Subversion is open source software, see http://subversion.tigris.org/ This product includes software developed by CollabNet (http://www.Collab.Net/). The following repository access (RA) modules are available: * ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol. - handles 'http' scheme - handles 'https' scheme * ra_svn : Module for accessing a repository using the svn network protocol. - handles 'svn' scheme * ra_local : Module for accessing a repository on local disk. - handles 'file' scheme $ git --version git version 1.6.5 $ git-svn clone -s file://localhost/home/foo/bar/ . perl: /tmp/buildd/subversion-1.4.2dfsg1/subversion/libsvn_subr/path.c:114: svn_path_join: Assertion `is_canonical(base, blen)' failed. Aborted </code></pre> <p>Has anyone here experienced this or similar issues? I've googled this assertion error before and I do come up with results, but they don't seem to be related to git-svn specifically. Could this error be perhaps the result of trying to use <code>git-svn clone</code> on a path of the form <code>file://...</code> rather than <code>http://...</code>?</p> http://stackoverflow.com/questions/1794382/how-to-update-git-to-latest-version 0 How to update git to latest version [closed] Ultimation 2009-11-25T03:05:11Z 2009-11-25T05:03:44Z <p>Does anyone have a trick to updating git to the latest version on a linux server? Can't quite seem to find a good solution after searching.</p> http://stackoverflow.com/questions/1793781/git-global-tags-evidently-bad-but-why 2 Git global tags--- evidently bad, but why? AndyL 2009-11-24T23:50:14Z 2009-11-24T23:56:02Z <p>In his <a href="http://lkml.indiana.edu/hypermail/linux/kernel/0506.2/2023.html" rel="nofollow">2005 email to the Linux Kernel mailing list</a>, Linus Torvalds is very emphatic that tags in git should be private and not be automatically included when fetching from others:</p> <blockquote> <p>Pulling a regular head <em>cannot</em> and <em>must</em> <em>not</em> update tags. Tags are not associated with the tree, and they <em>cannot</em> and <em>must</em> <em>not</em> be so, exactly because that would make them global instead of private, and it would fundamentally make them not be distributed</p> </blockquote> <p>and:</p> <blockquote> <p>It is wrong, wrong, <em>wrong</em> to think that fetching somebody elses tree means that you should fetch his tags.</p> </blockquote> <p>I am not a kernal hacker. One of the reasons I use git is to be able to edit my own code from different locations. Tags seem like a natural way to describe different versions for future reference, e.g. what works, what doesn't, what quirks exist. Thus to me it would seem helpful to have tags persist across fetches. Can someone explain what the peril of this paradigm is? </p> <p>Why is having private tags so important? And what is the alternative? Should I simply make a separate branch every time I may want to flag a particular version of the code? </p> http://stackoverflow.com/questions/1789887/git-svn-rebase-gone-horribly-wrong 0 git-svn rebase gone horribly wrong Jesper Rønn-Jensen 2009-11-24T12:51:42Z 2009-11-24T23:46:59Z <p>Is there a way to redo a git-svn rebase. or reset any effects by it.</p> <p>In my +8000 commit git-svn repository, something went wrong after merging a branch. My local "master" does not reflect anything near a complete log of trunk.</p> <p>And running <code>git svn rebase</code> correctly fetches new revisions but then tries to apply what looks like all 8000+ commits from the svn trunk.</p> <p>Are there ways to reset and make sure the HEAD of master points to HEAD of trunk?</p> http://stackoverflow.com/questions/1793735/git-change-case-of-a-file-on-windows 1 Git - change case of a file on windows? Electrons_Ahoy 2009-11-24T23:38:53Z 2009-11-24T23:43:07Z <p>There are a couple of files in our git-controlled codebase that I'd like to rename. Specifically, I just want to change the case of the file, so that <code>sourceCode.java</code> becomes <code>SourceCode.java</code>, for example. The catch: I'm on a Windows box, and the filesystem thinks those are the same file name.</p> <p>How can I get Windows and git to recognize that change and check it in?</p> http://stackoverflow.com/questions/1792174/has-anyone-found-a-way-to-merge-changes-in-xcode-project-or-core-data-model-files 2 Has anyone found a way to merge changes in Xcode project or Core Data model files? jeff7091 2009-11-24T18:58:14Z 2009-11-24T20:29:02Z <p>Is there a way to use a VCS (I'm using git) and have it work with merges to the Xcode files? For example, if my co-worker adds a new Group to the project, when I merge in his changes, I get the Group merged in? </p> <p>Or if he adds an attr to a Core Data entity, I get that attr in my Core Data model?</p> http://stackoverflow.com/questions/1791854/diffing-between-two-entire-directories-projects 0 Diffing between two entire directories/projects? meder 2009-11-24T18:03:31Z 2009-11-24T19:47:27Z <p>I inherited a project originally stored in CVS with all the revisions. I made quite a few edits, and I'm trying to compare all the changes I made in the original directory, in regards to new files added versus the old ones.</p> <p>Is there some sort of utility for hg/git where I can do a tree diff, or something of that nature? So that say, there's a mark between newly added files, deleted files, am I asking for too much?</p> http://stackoverflow.com/questions/1791717/how-can-i-keep-git-cvsimport-from-skipping-patchsets 0 How can I keep git cvsimport from skipping patchsets? Zack 2009-11-24T17:42:19Z 2009-11-24T17:53:55Z <p>I'm trying to import a cvs module into an existing git repo. I can get it to work properly if I import into a fresh repo, but when I try to import into the existing repo it seems determined to skip all the patchsets that are dated before the last commit to the branch that I've specified with -o. This is what I'm currently trying:</p> <pre><code>git cvsimport -v -p -x -o cvs -d &lt;cvsroot&gt; -k -u &lt;module&gt; </code></pre> <p>The end of the output consists of lines like this:</p> <pre><code>skip patchset 26: 1258578534 before 1259081502 </code></pre> <p>If I drop the "-o cvs", it fails with:</p> <pre><code>Branch 'origin' does not exist. Either use the correct '-o branch' option, or import to a new repository. </code></pre> <p>So, how can I get git cvsimport to import <em>everything</em>?</p> http://stackoverflow.com/questions/1270514/undoing-a-git-push 4 Undoing a git push Cyrus 2009-08-13T07:23:50Z 2009-11-24T16:48:49Z <p>I just did a doodoo, and in need of some help :)</p> <p>Here's what I did on my <em>supposed-to-be-stable</em> branch...</p> <pre><code>% git rebase master First, rewinding head to replay your work on top of it... Fast-forwarded alpha-0.3.0 to master. % git status # On branch alpha-0.3.0 # Your branch is ahead of 'origin/alpha-0.3.0' by 53 commits. # nothing to commit (working directory clean) % git push Fetching remote heads... refs/ refs/heads/ refs/tags/ refs/remotes/ 'refs/heads/master': up-to-date updating 'refs/heads/alpha-0.3.0' from cc4b63bebb6e6dd04407f8788938244b78c50285 to 83c9191dea88d146400853af5eb7555f252001b0 done 'refs/heads/unstable': up-to-date Updating remote server info </code></pre> <p>That was all a mistake as I later realized. I'd like to undo this entire process, and revert the alpha-0.3.0 branch back to what it was.</p> <p>Could anyone point me in the right direction?</p> <p><hr /></p> <p>The following is the fix in action based on the accepted answer...</p> <pre><code>% git push -f origin cc4b63b:alpha-0.3.0 Fetching remote heads... refs/ refs/heads/ refs/tags/ refs/remotes/ updating 'refs/heads/alpha-0.3.0' using 'cc4b63b' from 83c9191dea88d146400853af5eb7555f252001b0 to cc4b63bebb6e6dd04407f8788938244b78c50285 done Updating remote server info % </code></pre> http://stackoverflow.com/questions/1604613/workflow-best-practice-with-git-and-github 5 Workflow best practice with git and github? kylemac 2009-10-22T01:43:25Z 2009-11-24T15:36:51Z <p>I have been using git and github with my small team of developers for our projects. I can't help but think that we aren't doing it right. I am interested to hear how others use this workflow within their projects.</p> <p><strong>How we use it:</strong> We branch before each change, merge back into the master, commit locally and push to our github repo. We then ssh into our testing environment and pull the master branch of the github repo. We haven't quite grasped <code>rebase</code>, <code>fetch</code> or <code>tagging</code> just yet.</p> <p><strong>How I would like to use it:</strong> I would like to be able to ssh into the different servers and pull a specific tagged version, like "phase 1" into the server. Is this possible, or would I need two different github repos? </p> <p>Are you supposed to <code>git pull</code>a specific branch into the web servers or create a new alias to <code>git push</code> to?</p> <p>Can you control release candidates or environments (testing, development, production) within one git repository? or do you need multiple?</p> <p>If pulling is the solution, can you pull a specific <code>tag</code> ?</p> http://stackoverflow.com/questions/1784506/when-creating-a-git-repo-that-will-be-on-the-server-can-i-convert-it-to-a-bare-r 1 when creating a git repo that will be on the server, can I convert it to a bare repo? mrblah 2009-11-23T16:59:32Z 2009-11-24T15:00:47Z <p>I already created a repo, can I make it a bare type or shall I start over?</p> http://stackoverflow.com/questions/1114515/git-cannot-merge-from-master-branch-object-it-is-a-submodule 1 Git: cannot merge from master branch "object - It is a submodule" Coocoo4Cocoa 2009-07-11T19:59:02Z 2009-11-24T14:51:42Z <p>I'm having difficulty merging from my master branch to a separate branch I've been developing on in quite sometime. </p> <p>Doing a straight forward merge I get the following:</p> <pre><code>shell$ git merge master fatal: cannot read object asd211f3a58febecd4e447szxs733079211c71b7sa '/my/sub/dir/foo~master': It is a submodule! </code></pre> <p>I never setup the library 'foo' as a submodule explicitly. I made the mistake of moving a library that itself was versioned by git with a .git subdirectory into the main project, that is also a git repository.</p> <p>Apparently I didn't remove the submodule properly, or something else is seriously broken.</p> <p>The more pressing issue, is that after the failed merge, I see a staggering amount of project files via 'git status'. There are files 'that have been changed, but not added' in addition to 'Untracked files'. These are not files from my branch, they are files from master. </p> <p>I'm not even sure how many different levels of broken that is. But this is a two step problem. The submodule in addition to a bunch of files after the failed merge showing up. </p> <p>What's the best way to clean this repository up?</p>