英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

amend    音标拼音: [əm'ɛnd]
vt. 修正,改善,改良
vi. 改过自新

修正,改善,改良改过自新

amend
v 1: make amendments to; "amend the document"
2: to make better; "The editor improved the manuscript with his
changes" [synonym: {better}, {improve}, {amend}, {ameliorate},
{meliorate}] [ant: {aggravate}, {exacerbate}, {exasperate},
{worsen}]
3: set straight or right; "remedy these deficiencies"; "rectify
the inequities in salaries"; "repair an oversight" [synonym:
{rectify}, {remediate}, {remedy}, {repair}, {amend}]

Amend \A*mend"\ ([.a]*m[e^]nd"), v. i.
To grow better by rectifying something wrong in manners or
morals; to improve. "My fortune . . . amends." --Sir P.
Sidney.
[1913 Webster]


Amend \A*mend"\, v. t. [imp. & p. p. {Amended}; p. pr. & vb. n.
{Amending}.] [F. amender, L. emendare; e (ex) mendum,
menda, fault, akin to Skr. minda personal defect. Cf.
{Emend}, {Mend}.]
To change or modify in any way for the better; as,
(a) by simply removing what is erroneous, corrupt,
superfluous, faulty, and the like;
(b) by supplying deficiencies;
(c) by substituting something else in the place of what is
removed; to rectify.
[1913 Webster]

Mar not the thing that can not be amended. --Shak.
[1913 Webster]

An instant emergency, granting no possibility for
revision, or opening for amended thought. --De
Quincey.
[1913 Webster]

We shall cheer her sorrows, and amend her blood, by
wedding her to a Norman. --Sir W.
Scott.
[1913 Webster]

{To amend a bill}, to make some change in the details or
provisions of a bill or measure while on its passage,
professedly for its improvement.
[1913 Webster]

Syn: To {Amend}, {Emend}, {Correct}, {Reform}, {Rectify}.

Usage: These words agree in the idea of bringing things into
a more perfect state. We correct (literally, make
straight) when we conform things to some standard or
rule; as, to correct proof sheets. We amend by
removing blemishes, faults, or errors, and thus
rendering a thing more a nearly perfect; as, to amend
our ways, to amend a text, the draft of a bill, etc.
Emend is only another form of amend, and is applied
chiefly to editions of books, etc. To reform is
literally to form over again, or put into a new and
better form; as, to reform one's life. To rectify is
to make right; as, to rectify a mistake, to rectify
abuses, inadvertencies, etc.
[1913 Webster]

103 Moby Thesaurus words for "amend":
acculturate, advance, ameliorate, better, blue-pencil, boost,
bring forward, civilize, come along, come on, compensate, correct,
develop, edify, edit, educate, elevate, emend, emendate, enhance,
enlighten, enrich, fatten, favor, fix, forward, foster, gain,
gain ground, get ahead, get along, give satisfaction, go ahead,
go forward, go straight, graduate, grow better, improve,
improve upon, lard, lift, look up, make all square,
make an improvement, make good, make headway, make progress,
make right, make strides, meliorate, mend, new-model, nurture,
pay reparations, perk up, pick up, progress, promote, put right,
put straight, put to rights, raise, re-form, recense, reclaim,
recompense, rectify, redact, redeem, redraft, redress, refashion,
refine upon, reform, regenerate, remedy, remodel, remunerate,
renew, repair, requite, reshape, restore self-respect, revamp,
revise, rework, rewrite, right, set right, set straight,
set to rights, set up, shape up, show improvement, skyrocket,
socialize, straighten out, take off, transfigure, transform,
upgrade, uplift, work over


请选择你想看的字典辞典:
单词字典翻译
amend查看 amend 在百度字典中的解释百度英翻中〔查看〕
amend查看 amend 在Google字典中的解释Google英翻中〔查看〕
amend查看 amend 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • How to modify existing, unpushed commit messages?
    838 To amend the previous commit, make the changes you want and stage those changes, and then run git commit --amend This will open a file in your text editor representing your new commit message It starts out populated with the text from your old commit message Change the commit message as you want, then save the file and quit your editor to
  • git - How do I modify a specific commit? - Stack Overflow
    I have the following commit history: HEAD HEAD~ HEAD~2 HEAD~3 git commit --amend modifies the current HEAD commit But how do I modify HEAD~3?
  • Changing git commit message after push (given that no one pulled from . . .
    Changing history If it is the most recent commit, you can simply do this: git commit --amend This brings up the editor with the last commit message and lets you edit the message (You can use -m if you want to wipe out the old message and use a new one ) Pushing And then when you push, do this: git push --force-with-lease <repository> <branch> Or you can use "+": git push <repository> +<branch
  • How does git commit --amend work, exactly? - Stack Overflow
    3 According to my knowledge, amend works thus: For git commit --amend works the changes to amend must be into the stagging area (SA) It makes git reset -- soft for bring back changes committed in the last commit (commit to amend) to the SA and move the index to previous commit (commit before commit to amend)
  • git - What are the differences between revert, amend, rollback . . .
    To help in my knowledge of git so I can use it day to day, what is the difference between: revert amend rollback undo What are they and what do they do?
  • git - How to amend a commit without changing commit message (reusing . . .
    git commit --amend --no-edit This is especially useful for if you forgot to add some changes in last commit or when you want to add more changes without creating new commits by reusing the last commit
  • How can I change the commit author for a single commit?
    I want to change the author of a specific commit in the git history, and it's not the latest commit Related: How do I change the author and committer name email for multiple commits?
  • How do I push amended commit to the remote Git repository?
    What if my --amend was only to change the commit message? Any way to edit the last commit message alone, if it was already pushed to remote? I did that on Github and got the same message about non fast forward Then I applied a solution below but the merge just added more commit messages on top
  • git - How to modify GitHub pull request? - Stack Overflow
    I just had one commit in a pull request, and I used git commit --amend to update it I then did a force push with git push -f so my amended commit replaced the original one
  • git - How to change an old commit message? - Stack Overflow
    You can't use git commit --amend because it's not your most recent commit You would want to do a rebase, something similar to git rebase -i HEAD~3 Where 3 would be how many commits back you'd like to go This is doing an interactive rebase On the screen or text window that opens, replace pick with reword On the next screen or text window, you will then be able to change the commit message





中文字典-英文字典  2005-2009