Parameter of git-commit command that adds the current staging area to the last commit and allows you to write a new commit message.
1
vote
2answers
63 views
How to change author name on git branch
I branched my github project to create the static page the other day but messed up with my author name
https://github.com/ronaldsuwandi/le-simplepage/commits/gh-pages
How do I rename the author for ...
4
votes
2answers
101 views
git commit --amend without asking for message
From time to time I find myself commit-amending using the same message.
Typically, I do:
Add my changes to staging area.
Do git commit --amend.
Wait for the text editor to open.
Save and close it ...
1
vote
2answers
63 views
Is it possible to make a git commit non-amendable?
Is there a way to protect a given git commit from being amended?
All I can think to do is to write a pre-commit hook to check the SHA against a list of 'non-amendable' SHAs. Does anyone know of a ...
1
vote
0answers
98 views
Git - Problems with Detached Head, Amending Commits, and Being Behind when Pushing?
Our team is using git submodules, but we run into some errors with pulling, which tells us that we are behind even though we recently updated (and there have been no remote commits / pushes since). ...
0
votes
1answer
61 views
Drupal add field varchar issues
I am using the following code to amend a database table by adding extra columns:
$componentName = 'is_this_the_first_time_you_have_taken_part_in_or_attended_this_event';
...
0
votes
2answers
81 views
why git commit --amend make confliction happened? that is quite strange
* 84b134d - (HEAD, origin/lab_master, lab_master) comment macro defination which is protent to be a fun
|\
| * 735d88f - add small script to ease ctag related option (13 minutes ago)
* | 6623a94 - ...
3
votes
1answer
363 views
How to amend a public changeset in Mercurial
I'd like to amend my last commit, but running
hg commit --amend
gives me
abort: cannot amend public changesets
even though I know that it's safe to edit the changeset. How can I change the phase ...
1
vote
1answer
58 views
How to git commit --amend a commit that's the base of a branch
I have branch foo off of master/head. I wanted to ammend the master/head and have these changes picked up on branch foo. I did the following:
git checkout master
git add ...
git commit --amend
git ...
3
votes
2answers
73 views
Changing the code of previous commits with git rebase -i
I have a repository with various commits which I want merged in two patches.
One patch introducing the feature and another changing the existing code to use it.
Problem is, when I was coding and ...
27
votes
2answers
2k views
git commit --amend --use-existing-message? (no editor interaction)
Is there a way to amend a commit without vi (or your $EDITOR) popping up with the option to modify your commit message, but simply reusing the previous message?
50
votes
5answers
8k 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 ...
0
votes
2answers
99 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 ...
17
votes
3answers
4k 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.
...
8
votes
2answers
313 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 ...
3
votes
4answers
5k 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 ...
14
votes
3answers
6k views
Accidently pushed commit: change git commit message
In my local repo I have one commit with an incorrect commit message.
I've already published the incorrect commit message with git push.
Now the remote repo (which is GitHub-hosted) has the incorrect ...
2
votes
3answers
2k 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:
...
0
votes
1answer
103 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
496 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, ...
2
votes
1answer
708 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 ...
136
votes
3answers
20k 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 ...
17
votes
3answers
14k 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.
