Git commit text file? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T00:17:54Z http://stackoverflow.com/feeds/question/60278 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/60278/git-commit-text-file 4 Git commit text file? Alex 2008-09-13T02:48:40Z 2009-09-23T17:39:13Z <p>I am trying to learn how to use git, and in all the tutorials they say that you can do </p> <p>git init</p> <p>git add .</p> <p>git commit</p> <p>but when I do that I get a big text file opened up, and none of the tutorials seem to address this, so I dont know what to do. Any help?</p> http://stackoverflow.com/questions/60278/git-commit-text-file/60283#60283 2 Answer by Ben Collins for Git commit text file? Ben Collins 2008-09-13T02:56:32Z 2008-09-13T02:56:32Z <p>The <code>git commit</code> command will open up the editor specified in the <code>EDITOR</code> environment variable so you can enter a commit comment. On a Linux or BSD system, this should be vi by default, although any editor should work.</p> <p>Just enter your comments and save the file.</p> http://stackoverflow.com/questions/60278/git-commit-text-file/60284#60284 6 Answer by Greg Hewgill for Git commit text file? Greg Hewgill 2008-09-13T02:58:36Z 2008-09-13T02:58:36Z <p>The <code>-m</code> option to commit lets you enter a commit message on the command line:</p> <pre><code>git commit -m "my first commit" </code></pre> http://stackoverflow.com/questions/60278/git-commit-text-file/60286#60286 17 Answer by Lou for Git commit text file? Lou 2008-09-13T03:00:52Z 2008-09-13T03:00:52Z <p>The text file that is being opened is a summary of the current commit operation. The git commit drops you into this file so the you can add a commit message at the top of the file. Once you've added your message just save and exit from this file.</p> <p>There is also a "-m msg" switch on this command that allows you to add the commit message on the command line.</p> http://stackoverflow.com/questions/60278/git-commit-text-file/60292#60292 0 Answer by Flame for Git commit text file? Flame 2008-09-13T03:11:33Z 2008-10-01T22:16:50Z <p>When doing revision control, you should always explain what the changed you made are. Usually the first time you're have a comment such as "Initial Commit."</p> <p>However in the long run you want to make a good comment for each commit. You will want something of the form:</p> <blockquote> <p>Added experimental feature x.</p> <p>X will increase the performance of feature Y in condition Z. Should you need X activate it with the -x or --feature-eks switches. This addresses feature request #1138.</p> </blockquote> http://stackoverflow.com/questions/60278/git-commit-text-file/60311#60311 10 Answer by Will Robertson for Git commit text file? Will Robertson 2008-09-13T03:44:02Z 2008-09-21T14:32:43Z <p>As mentioned by <a href="http://beta.stackoverflow.com/questions/60278/git-commit-text-file#60283" rel="nofollow">Ben Collins</a>, without the <code>-m "..."</code> argument to type the commit inline (which is generally a bad idea as it encourages you to be brief), this "big text file" that is opened up is a window in which to type the commit message.</p> <p>Usually it's recommended to write a summary in the first line, skip a line, and then write more detailed notes beneath; this helps programs that do things like email the commit messages with an appropriate subject line and the full list of changes made in the body.</p> <p>Instead of changing the <code>EDITOR</code> shell variable, you can also change the editor used by adding the additional lines in your <code>~/.gitconfig</code> file:</p> <pre><code>[core] editor = emacs excludesfile = /Users/will/.gitignore </code></pre> <p>That second line actually has nothing to do with your problem, but I find it really useful so I can populate my <code>~/.gitignore</code> file with all those filetypes I <em>know</em> I'll never, ever, want to commit to a repository.</p> http://stackoverflow.com/questions/60278/git-commit-text-file/60320#60320 0 Answer by Tom Martin for Git commit text file? Tom Martin 2008-09-13T04:09:18Z 2008-09-13T04:09:18Z <p>Yeah, make sure you have a sensible editor set. Not sure what you're default editor will be but if, like me, it is nano (will say somewhere near the top after you type commit) you just need to type in a comment and then hit Ctrl-x to finish. Then hit y, followed by enter to affirm the commit.</p> <p>Also, if you want to see a simple list of the files you'll be committing rather than a huge diff listing beforehand try </p> <pre><code>git diff --name-only</code></pre> http://stackoverflow.com/questions/60278/git-commit-text-file/466803#466803 1 Answer by Stephen Bailey for Git commit text file? Stephen Bailey 2009-01-21T20:20:31Z 2009-07-20T05:29:22Z <p>As all have said this is just where you add your commit comment - but for some it may still be confusing esp if you have not configured your editor settings, and you are not aware of what <a href="http://en.wikipedia.org/wiki/Vi" rel="nofollow">VI</a> is : then you could be in for a shock, because you will think you are still in the GIT-Bash</p> <p>In that case you are in fact in a text editor with some interesting ways of dealing with things and <a href="http://www.tuxfiles.org/linuxhelp/vimcheat.html" rel="nofollow">this set of commands</a> may help you out so that you can get past your first commit and then configure an editor you are familiar with or use it as an opportunity to learn how to use it.</p> http://stackoverflow.com/questions/60278/git-commit-text-file/532094#532094 3 Answer by celebrus for Git commit text file? celebrus 2009-02-10T12:21:55Z 2009-02-10T12:21:55Z <p>You can change the default text editor that git uses with this command too:</p> <pre><code>git config core.editor "nano" </code></pre> <p>You have to change nano to whatever command would normally open your text editor.</p> http://stackoverflow.com/questions/60278/git-commit-text-file/1077672#1077672 0 Answer by PHLAK for Git commit text file? PHLAK 2009-07-03T03:37:35Z 2009-07-03T03:37:35Z <p>The following is probably the easiest way to commit all changes:</p> <pre><code>git commit -a -m "Type your commit message here..." </code></pre> <p>Of course there are much more detailed ways of committing, but that should get you started.</p> http://stackoverflow.com/questions/60278/git-commit-text-file/1385246#1385246 1 Answer by Ælfric for Git commit text file? Ælfric 2009-09-06T08:54:44Z 2009-09-06T08:54:44Z <p>If you’re on Mac OS X and using BBEdit, you can set this up as the editor of choice for commit messages:</p> <pre><code>git config --global core.editor "bbedit -w" </code></pre> <p>Once finished edit, save and close the file and git will use it for the comments.</p> http://stackoverflow.com/questions/60278/git-commit-text-file/1464333#1464333 0 Answer by TheGeoff for Git commit text file? TheGeoff 2009-09-23T06:53:48Z 2009-09-23T17:39:13Z <p>Try Escape then ZZ, after you're done typing your message. As others have said when you run that commit command it actually runs a text editor to enter the message into. In my case (OS X) it was VI, which I figured out after some digging around. In that case, hit Escape to go into "command" mode (as opposed to INSERT mode) the enter ZZ. I'm sure there are other ways of accomplishing the task but that did it for me. Having never used VI or emacs it wasn't readily apparent to me and wasn't mentioned in any of the beginner guides I was using. Hopefully this helps.</p>