Tagged Questions

A *commit* is the "confirmation of a unit of work"

learn more… | top users | synonyms

661
votes
6answers
128k views

How do I edit an incorrect commit message in git

I stupidly did a git commit while half asleep, and wrote totally the wrong thing in the commit message, How do I change the commit message? I have not yet pushed the commit to anyone
497
votes
7answers
152k views

Git undo last commit

I accidentally added the wrong directory containing my files. Instead of adding a .java file, I added the directory containing the .class file. How can I undo this action?
100
votes
6answers
64k views

Git: removing selected commits from repository

I would like to remove selected commits from a linear commit tree, so that the commits do not show in the commit log. My commit tree looks something like: R--A--B--C--D--E--HEAD I would like to ...
99
votes
7answers
35k views

How do I edit a log message that I already committed in Subversion?

Is there a way to edit the log message of a certain revision in Subversion? I accidentally wrote a wrong filename in my commit message which could be confusing later. I've seen How do I edit an ...
53
votes
3answers
7k views

How to undo “git commit --amend” done instead of “git commit”

I accidentally amended my previous commit. The commit should have been separate to keep history of the changes I made to a particular file. Is there a way to undo that last commit? If I do something ...
35
votes
4answers
9k views

Git commit against tag with no branch

If I check out a tagged version of my source code without creating a branch, Git indicates that I'm not associated with any branch at all. It's happy to let me make changes and check them in though. ...
33
votes
3answers
7k views

How can one change the timestamp of an old commit in Git?

The answers to this question describe a way to amend previous commit messages that haven't yet been pushed upstream. The new messages inherit the timestamps of the original commits. This seems ...
30
votes
5answers
15k views

src refspec master does not match any when pushing commits in git

I cloned my repository with: git clone ssh://xxxxx/xx.git but after I changed some files and add and commit them I want to push them to server: git add xxx.php git commit -m "TEST" git push ...
28
votes
3answers
9k views

SVN commit error after deleting files locally

I have a project that I am building with Netbeans 6.1 and I am using SVN. I deleted some files on the local machine then attempted to commit my changes to th SVN repository. The commit fails with the ...
27
votes
5answers
8k views

What is the difference between git commit and git push?

In a Git tutorial I'm going through, git commit is used to store the changes you've made. What is git push used for then? Thanks for reading!
21
votes
13answers
912 views

Should I commit cosmetic changes?

There are minor coding style changes that I often want to commit to the source control, but now the change log is full of those changes that do not affect code functionality. What should I do next ...
20
votes
2answers
2k views

Git: How to split up a commit buried in history

I flubbed up my history and want to do some changes to it. Problem is, I have a commit with two unrelated changes, and this commit is surrounded by some other changes in my local (non-pushed) history. ...
19
votes
15answers
16k views

How can I force subversion to commit an unchanged file?

I want subversion to commit a file even if it's unchanged. Is there a way to do this?
17
votes
9answers
2k views

git commit frequency

Since i switched to git from svn i started make more commits every time i recompile and my tests pass i commit my work. In the end i end up committing function by function. I also track some other ...
16
votes
4answers
2k views

git - pushing specific commit

I have made several commits on different files, but so far I would like to push to my remote repository only a specific commit. Is that possible?
15
votes
3answers
1k views

Git Commit Generation Numbers

What are git commit generation numbers (hacker news link) and what are their significance?
15
votes
7answers
4k views

Is there a difference between commit and rollback in a transaction only having selects?

The in-house application framework we use at my company makes it necessary to put every SQL query into transactions, even though if I know that none of the commands will make changes in the database. ...
15
votes
6answers
3k views

Can I commit only parts of my code using SVN or Mercurial?

I use Tortoise SVN usuallly, but I have been looking into Mercurial since it is a distributed revision control system. What I am looking for, in both systems, is a tool that let me pick only parts ...
14
votes
1answer
2k views

Git blame — prior commits?

I love the git blame command, it is very useful for tracking down people who don't own up to writing code. :-) However, it is possible to see who edited a specific line before the commit reported by ...
14
votes
3answers
718 views

How to commit my current changes to a different branch in git

Sometimes it happens that I make some changes in my working directory and I realize that these changes should be committed in a branch different to the current one. This usually happens when I want to ...
14
votes
3answers
1k views

Start a git commit message with a hashmark (#)

Git treats lines starting with # as comment lines when committing. this is very annoying when working with a ticket tracking system, and trying to write the ticket number at the beginning of the line, ...
14
votes
8answers
5k views

What is a decent SVN monitoring tool?

I'm working on a project with a couple other members and it would be nice if I could get system tray alerts when someone commits to the project. I've seen tools for this before and googled around a ...
13
votes
4answers
3k views

How can I uncommit the last commit in a git bare repository?

Taking into consideration that there are several git commands that make no sense in a bare repository (because bare repositories don't use indexes and do not have a working directory), git reset ...
12
votes
3answers
2k views

How to move certain commits to another branch in git?

The situation: master is at X; quickfix1 is at X + 2 commits then i started working on quickfix2, but by accident took quickfix1 as the source branch to copy, not the master. Now quickfix2 is at X + ...
12
votes
10answers
382 views

How to Encourage More Frequent Commits to SVN

A group of developers that I am working with switched from VSS to SVN about half a year ago. The transition from CheckOut-CheckIn to Update-Commit has been hard on a number of users. Now that they are ...
12
votes
5answers
862 views

DVCS - How often and when to commit changes

There is another thread here on StackOverflow, dealing wih how often to commit changes to source control. I want to put that in the context of using a DVCS like git or mercurial. How often and when ...
12
votes
6answers
7k views

Subversion commit failed Merge of file: 200 OK

I am having the strangest problem ... every time i commit i get and error like this: commit failed (details follow): MERGE of '/svn/project/trunk/web/directory/': 200 OK (http://mydomain.com) that ...
10
votes
6answers
2k views

Combine Local Git Commits into One Commit with git-svn

Currently, when I run git svn dcommit git creates a separate commit in SVN for every local commit I've made since last syncing with SVN. Is there any way for dcommit to instead combine all my recent ...
9
votes
5answers
5k views

SVN- How to commit multiple files in a single shot

I tried to commit multiple files across different directories in a single shot as below, svn commit –m”log msg” mydir/dir1/file1.c mydir/dir2/myfile1.h mydir/dir3/myfile3.c etc etc Since, I wanted ...
9
votes
2answers
813 views

How do I make a Git commit in the past?

I'm converting everything over to Git for my own personal use and I found some old versions of a file already in the repository. How do I commit it to the history in the correct order according the ...
9
votes
8answers
1k views

svn: local commits

Subversion: is it possible to commit local revisions without pushing them, and push them at a later date - or is the lack of this feature why it's called "centralized" ?
8
votes
1answer
156 views

TortoiseSVN 1.7 extremely slow on commit and check modifications on network share

This issue is related for operations with TortoiseSVN 1.7 only and on network share only. On the dev server I have an svn working copy where I can commit something and then update on production ...
8
votes
4answers
2k views

Mercurial says “abort: outstanding uncommitted changes”, I don't want to commit!

Scenario: Local repo, before I leave the office $ hg status M important/update1 M another/important/update2 M work/in/progress I want to commit and push important/update1 and important/update2, ...
8
votes
3answers
6k views

svn: How to undo a merge (without commit)?

I just did an svn merge to merge changes from the trunk to a branch: $ svn merge -r328:HEAD file:///home/user/svn/repos/proj/trunk . --- Merging r388 through r500 into '.': A foo A bar C ...
7
votes
2answers
106 views

Cannot commit to svn - access denied

I am working on a small project with SVN. I checked out the project: svn co http://mylocalserver/projectx/ . I made my changes (updated and added files): svn add file1.php, file2.php But then, ...
7
votes
3answers
125 views

Prevent direct commits on master branch in git repository and accept merges only?

My git repository has two branches, 'master' and 'dev'. Code committed to 'dev' goes through an automated build process before it is tested. Code that passes this is then merged into the 'master' ...
7
votes
3answers
5k views

How to solve the svn error “Entry for 'xxx is marked as 'copied' but is not itself scheduled for addition.”

When I try to commit a specific file (xxx.java) following error pops up: svn: Entry for 'C:\aaa/bbb/ccc/xxx.java' is marked as 'copied' but is not itself scheduled for addition. Perhaps you're ...
7
votes
3answers
2k views

Best code review tool for GIT

Is there a an open source or free code review tool that works best with GIT? 1.Have tried gerrit but is there a better open source or free code review tool? 2.Is there a code review that is capable ...
7
votes
2answers
7k views

Git: Stage into Commit, what is the right workflow?

I just created a big piece of code I want to commit in several separate commits. So I can stage relevant parts, commit, stage, commit, ... and so on until I have all my changes commited. The missing ...
7
votes
3answers
2k views

How can I prevent Subversion commits without comments?

Does anybody know how to prevent commits to a Subversion code repository when there is no commit comment entered?
7
votes
4answers
3k views

How to add/remove folders without downloading from the repository in Subversion?

I have a huge repository where I want to add/remove a folder. I haven't checked out anything yet. There is any way to do it fast?
7
votes
2answers
2k views

Mercurial: how do I change commit time (not pushed yet)?

How can I change the time I've made a commit in my local repository? Suppose I've done several commits and noticed that the date on my computer is wrong. These commits were not pushed anywhere yet, ...
6
votes
3answers
76 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 ...
6
votes
2answers
111 views

Grouping a set of commits in Mercurial?

I'm working on a new feature branch. It's necessary to keep all the history, but for someone scouring over the history at a later date, much of it is over verbose. For example I may have 5 commits ...
6
votes
1answer
125 views

How does git handle commits in a merge?

I'm having trouble understanding how a git merge works in terms of the commits created by the merge process. I've read the relevant sections in pro git and the git community book, but am still ...
6
votes
2answers
210 views

Rollback multiple commits (before Pushed to public) in Mercurial

I am aware that rollbacks can remove commits from the latest changeset in a local repository. However, is it possible to remove all the latest commits since the previous push without having to ...
6
votes
2answers
191 views

restore - git reset --hard HEAD^

Unfortunately I did several times git reset --hard HEAD^ losing a quite big chunk of code in several files. Is there a way to restore those commits or in this case to forward where the HEAD was ...
6
votes
3answers
310 views

How do I avoid committing small changes in git?

I'm wondering, how could I avoid a commit in really small changes of code. For instance, sometimes I miss a space between parameters or that kind of tiny code formatting. The reason I ask this is ...
6
votes
4answers
919 views

splitting up a git commit into phases: how to manually intervene?

I have a source file where 2 features have been added. In order to allow cherry-picking, I'd like to commit that in 2 phases: one for each feature. Until now, in similar situations, using git add -p ...
6
votes
2answers
497 views

Can I substitute savepoints for starting new transactions in Oracle?

Right now the process that we're using for inserting sets of records is something like this: (and note that "set of records" means something like a person's record along with their addresses, phone ...

1 2 3 4 5 13