Tagged Questions
The amend tag has no wiki summary.
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 ...
13
votes
3answers
9k views
Mercurial: Remove changeset from remote branch
Is there a way to remove a from a remote changeset, or to remove an entire changeset?
I accidentely pushed a .war file to a remote repo and I want to remove it.
5
votes
3answers
155 views
Mercurial: how to amend the last commit?
I'm looking for a counter-part of git commit --amend in Mercurial, i.e. a way to modify the commit which my working copy is linked to. The requirements for this amend-procedure are:
if possible, it ...
3
votes
2answers
259 views
Git: How to edit/reword a merge commit's message?
How do I edit or reword a merge commit's message?
git commit --amend works if it's the last commit made (HEAD), but what if it comes before HEAD?
git rebase -i HEAD~5 doesn't list the merge commits.
...
3
votes
4answers
585 views
Perl - Problem with splitting columns in tab delimited text file and replacing columns with new values
I have a tab delim. text file comprised of a number of rows and columns. I want to change the contents of the first two columns, then write the amended file to a new file.
Before changing , the first ...
2
votes
2answers
91 views
git: change one line in file for the complete history
When I started my git repo I commited a few files as initial commit to it. Now, many commits later, I noticed that I included in those files a line with information which I do not want to publish ...
2
votes
3answers
295 views
Iterating on a dictionary, adding keys and values
I would like to iterate on a dictionary, amending the dictionary each time rather than what is currently happening which is resetting the old value with the new one.
My current code is:
while True:
...
1
vote
3answers
442 views
accidently pushed commit: change git commit message
local repo: one commit with 'screwed' commit message
git push - oops, I've published it
now remote repo (github-hosted) has 'screwed' commit message too
git commit --amend is no good for me
How ...
1
vote
1answer
451 views
How to remove a file from a git commit to push to svn
I replaced a folder and all its contents with a symlink. That is removed the folder and added a symlink, in a single git commit.
Git commit happened normally. However when I try to push to the ...
0
votes
2answers
24 views
git: getting rid of previous commit so that you can amend the one before
what happened:
change1,
git commit,
git push,
change2,
git commit
what should have happened:
change1,
git commit,
git push,
change2,
git commit --amend
It's not important that I retain change2, but ...
0
votes
1answer
73 views
Is it possible to amend the Android Market Terms of Use?
My employer wants to sign up to release applications through the Android Market, but they don't like item 15.7 in the Terms of Use.
http://www.android.com/us/developer-distribution-agreement.html
...
0
votes
2answers
222 views
How can I detect whether a git commit is a parent of other commits?
I'm writing a script that makes some trivial changes and then commits them to git. Because these are trivial changes, I want to do git commit --amend whenever I can get away with it -- specifically, ...
-1
votes
0answers
30 views
amending a git commit after cherry-pick
I was wondering why I am unable to amend a cherry picked commit onto another commit?
git cherry-pick hash
git commit --amend -aC HEAD