The commit-message tag has no wiki summary.
0
votes
3answers
161 views
Standard to follow when writing git commit messages [closed]
I find myself managing very many files (over 60 but below 70) and my commit messages so far follow this pattern:
when I have added something like on layout.css, my commit message is "added something ...
0
votes
1answer
71 views
netbeans overwrite my commit message when pulling
I'm using Git versioning in NetBeans 7.2.1 with a GitHub repository.
If I commit my changes and then I push it to the remote repository immediately after commit (suppose the remote version has not ...
1
vote
2answers
1k views
git pull - can't submit merge message [duplicate]
Possible Duplicate:
github locks up mac terminal when using pull command
I am using git via the terminal on the mac.
I have encountered an annoying problem recently when I try to perform ...
6
votes
2answers
560 views
Why is it considered good practice to describe git commits in the present tense?
I've read all kinds of Git tutorials, including the official one, and they all seem to tell me it's good convention and practice to write Git commit notes in the present tense.
Why is that? What is ...
1
vote
0answers
38 views
Jenkins: capture git commit message [duplicate]
Possible Duplicate:
Get access to Build Changelog in Jenkins
We have a Jenkins CI server setup that is doing rubymotion testflight builds. Rubymotion allows a message to be sent to ...
1
vote
1answer
273 views
Commit message prefix in git
I have a requirement to prepend "ticket:N" to commit message, where N is the number of ticket I'm working at. But I keep forgetting about prefix and remember about it only 5-6 commits later, so ...
-4
votes
2answers
98 views
Git:how to do git commit with a pass-phrase on message? [closed]
am having a problem on git commit...while committing on git repo, we used to add some message about the changes in code...problem>>>while adding the message, the person who committing should add a ...
2
votes
2answers
138 views
Tagging commit messages and changesets
I am searching for a solution, to tag changesets in commit messages.
For me a "tag" is something like:
code clean up
user visible change
modifies database structure (ALTER TABLE)
Documentation ...
6
votes
3answers
200 views
Git: change HEAD commit's message without touching the index
I know that I can use git commit --amend --file=path-to-my-new-message but this will amend staged changes, too. Of course, I could stash and later apply&drop the stash, but is there a quicker ...
2
votes
1answer
217 views
git: need to parse commit messages looking for pattern and storing in list
all of my git commit messages start with
refs #SOME_NUMBER
where SOME_NUMBER is a number from 1 up. I would like to parse all commmit messages on
my working branch, store all of the ...
0
votes
2answers
84 views
What terms do you use to describe the nature of a refactorization?
Currently I'm trying to write a good commit comment for a code refactoring I've made.
And I feel like I'm missing a word to sum up what I did instead of describing it.
Right now my description is:
...
3
votes
3answers
373 views
How do I edit past git commits to remove my password from the commit logs?
My problem: cygwin git doesn't seem to correctly prompt for credentials when using https:// URLs, so I used username and password in the URL. Unfortunately when I did a "get pull" it auto-commited a ...
3
votes
1answer
978 views
How to edit Mercurial commit message after branching?
I have some old commit messages in a Mercurial repository that should be changed (to adjust for some new tools). I already understand that this hacking has to be done on the master repository and all ...
1
vote
1answer
2k views
XCode: Commit failed in SVN : No space left on device
Hi,
I am committing my project in SVN using XCode. I do it successfully for quite a few months. But suddenly today, while committing, it is showing the following error :
The working copy ...
2
votes
1answer
52 views
Git: How do I edit only the message of a previous commit that is not the latest one?
I just realized that I left one word in the commit message of a previous commit (so I can't use git commit --amend) that makes the message mean completely the opposite of what I had intended.
The ...
1
vote
1answer
385 views
How to validate and enforce commit message in Mercurial?
What are all steps required to validate commit message with set of regular expressions?
We want to work in semi-centralized set-up so I need a solution for the developer clone (local repository) and ...
2
votes
1answer
85 views
Informative message for reverting multiple git commits
When reverting multiple commits using
git revert -n f0000000
git revert -n baaaaaaa
is it possible to ask git to mention in the new commit message all the commits you've reverted, not just one of ...
3
votes
1answer
939 views
svn: revision file lacks trailing newline
I wanted to commit a change in a file that is under subversion control:
svn ci some-file -m "some-comment"
but I receive a
svn: Commit failed (details follow):
svn: Revision file lacks trailing ...
2
votes
0answers
500 views
Templates for log messages at the moment of commiting a change
I use Subversion.
When I try to commit a change in a repository, and forget to write a comment as part of the parameters (parameter -m or --message), a text editor opens and tells you to write a ...
0
votes
2answers
366 views
Could not set the svn commit message in ccnet
I made a CCNET task to commit changes in a setup project after all msbuild tasks have successfully finished.
<exec executable="svn.exe">
<description>Commit changes in the setup ...
9
votes
2answers
286 views
Should I remove the list of conflicts in my commit message after doing a manual merge?
Say I run git pull and there is a conflict that git cannot automatically merge.
After I manually merge the changes, and run git commit, should I leave the Conflicts: section that git generates in the ...
12
votes
2answers
608 views
Can I skip the commit message step when I run git commit --amend?
I'm running a very rapid code-compile-test loop where I am amending changes to my commits far more often than not.
For example:
# Make some changes
$ git commit -m "Added feature X"
# Compile, test
...
2
votes
1answer
1k views
Trigger build in Jenkins/Hudson using hashtag in commit-message
Is it possible to trigger a Hudson/Jenkins build only when a certain string appears in a commit-message?
For instance, I want to trigger a build that rolls out my application to the dev environment ...
4
votes
4answers
1k views
What to do after typing in commit message for git?
After I type in git commit -a a text editor pops up and I type in my comment. What buttons do I have to press after typing in the comment, to get it to move to the next stage of actually committing?
...
19
votes
3answers
7k views
How to output git log with the first line only?
I am trying to customize the format for git log. I want all commits to be shown in one line. Each line should only show the first line of the commit message.
I found out that git log --pretty=short ...
1
vote
1answer
131 views
Changing lots of git commit messages
Apparently I mistyped my email a long time ago, whenever I was setting up git, and so my email has been incorrect in many repositories (I typed a 0 instead of an o). I sign all of my commits, so in ...
7
votes
2answers
492 views
How do I edit the commit message of any commit in git?
Let's say I have 3 unpushed commits. Now I want to change the commit message of the first or second commit (changing them for the third one is simple using git commit --amend). How to do that?
55
votes
8answers
6k views
Should I use past or present tense in git commit messages?
I read once that git commit messages should be in the imperative present text, e.g. "Add tests for x". I always find myself using the past tense, e.g. "Added tests for x" though, which feels a lot ...
9
votes
3answers
1k views
How do I prompt the user from within a commit-msg hook?
I want to warn the user if their commit message doesn't follow a certain set of guidelines, and then give them the option to edit their commit message, ignore the warning, or cancel the commit. The ...
8
votes
4answers
2k views
Print commit message of a given commit in git
I need a plumbing command to print the commit message of one given commit - nothing more, nothing less.
5
votes
4answers
222 views
Proper Commit Messages
What are commit messages for? I've always been writing them as an explanation of what I did, but I've recently gotten into a discussion about it with a colleague who writes commit messages explaining ...
5
votes
6answers
258 views
What is the use of commit messages?
I struggled asking that question but here it is.
I am using source control since several years for multiple projects using different systems (svn, hg, git) and I learned how to improve my messages by ...
1
vote
2answers
106 views
Is there a way to accumulate a commit message with git while examing changes?
I use "git add -p" to stage my changes. What I'd like to be able to do is to accumulate a commit message as I'm examining my changes and then when I call "git commit", it is already filled out for me ...
0
votes
2answers
314 views
How to change svn commit message
I wrote a script which can auto commit in every 10 minutes. But it's commit message always same ("Code saved"). But i want to change some of them which are milestone.
This is my auto commit script:
...
2
votes
3answers
163 views
Copying subversion commit messages
I know this isn't the BEST practice, but every once in a while when I'm merging up a huge batch up changes with the trunk (and I know my branch is current), I will simply delete the contents of the ...
167
votes
8answers
47k views
How do I make git use the editor of my choice for commits?
For example, I would prefer to write my commit messages in vim, but it is opening emacs.
How do I configure git to always use vim instead? Note that I want to do this globally, not just for a single ...
4
votes
2answers
533 views
How do you access the commit message in a Mercurial in-process hook?
I've been trying
def debug_hook(ui, repo, **kwargs):
changectx = repo[None]
ui.status('change.desc: %s\n' % changectx.description())
return True
But it always prints an empty string. Is ...
1
vote
3answers
176 views
how to (unobtrusively) specify commit messages in your editor/ide
Background: the current text editor i am using does not have built-in support for git. Nevertheless, it has support for user-created addons, so I made one for auto-commiting to the repository each ...
3
votes
8answers
2k views
How might I force our developers to enter notes when committing via TortoiseSVN? [duplicate]
Possible Duplicates:
Any svn:hook script that enforce commit with comments?
Creating a Required Comment Hook for Tortoise SVN
I often see a slew of commits, but no notes referencing the ...
5
votes
5answers
5k views
JIRA code validation commit hook for 'git'
Does anyone have a git commit hook I can use that will ensure a JIRA issue number appears in the checkin message? I've got no experience driving JIRA from a git commit hook so any help would be ...
0
votes
1answer
180 views
subversion per module add,copy,modify,delete notification
Currently I have a mailer.py file that sends an email when there is a commit on a particular repository.
Anyone knows how to have ONLY emails sent out to the owner of modules (directories) within a ...
14
votes
3answers
13k views
How do I create a SVN Commit Message Template and Hook to Verify
I'm using Visual SVN Server and Tortoise SVN (client) for source control. I would like all developers to standardize on a consistent format for checkin notes.
For Example I want their Commit Message ...
167
votes
11answers
35k views
How to edit incorrect commit message in Mercurial?
I am currently using TortoiseHg (Mercurial) and accidentally committed an incorrect commit message. How do I go about editing this commit message in the repository?
33
votes
4answers
21k views
How do I edit an incorrect commit message in git (I've pushed)?
I want to modify a commit message deeper in history. And I've pushed many new commits.
How do I chnage the commit message? Is it possible?
Thanks!
72
votes
11answers
14k views
Suggestions for a good commit message: format/guideline?
I'm at the beginning of a new project, and I'm trying to set up the repository in a smart fashion and establish some code style guidelines for everyone to be able to concentrate on code.
Most of it ...