Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using msysgit running on Windows XP.

Tried Ctrl+V, Right click, Middle click, google... no luck.

share|improve this question

12 Answers

up vote 250 down vote accepted

Press Insert.

Also, to copy from the window, try clicking the console's window icon (topleft) and choosing Edit -> Mark, then drag a box on the text, then press Enter. (You can also paste via the window icon menu, but the key is faster.)

share|improve this answer
9  
What I want is to paste content into git bash. But thanks to you, I spotted Edit -> Paste which is exactly what I want! No more typing API code manually! – rockacola Feb 21 '10 at 1:08
20  
+1 to Amber. -1MILLION to msysgit for not implementing CTRL+V. Grrr – Cameron MacFarland Jan 3 '12 at 2:04
6  
Strictly speaking, that's not msysgit's fault, but rather an issue because msys uses cmd.exe. – anarchivist Apr 17 '12 at 23:55
1  
I upvoted your answer, but the fancy "Insert" key formatting initially made me miss the "Press Insert." part. – Danny Nov 26 '12 at 4:42
1  
@tandrewnichols yes, Mark->Enter in the Windows terminal copies what's literally in the terminal, rather than being aware of lines. (Basically it comes down to Windows terminals being pretty dumb, sadly.) – Amber Dec 21 '12 at 14:44
show 3 more comments

Aside from using the edit menu commands, you can directly paste into the git bash window using the keyboard shortcut, Insert.

share|improve this answer
5  
No need for the Control key, just the Insert key works to paste – jasonpenny Mar 3 '10 at 2:11
4  
This is much better then the accepted answer! – Jörn Zaefferer Oct 27 '10 at 12:17
how to cancel the paste? is there any shortcuts? Thanks! – AntiGameZ Apr 25 '11 at 3:38
2  
Just hit Control+C and the command won't be executed. – Chris Apr 28 '11 at 23:18
Thank you. A LOT. – orftz Oct 29 '11 at 11:51
show 3 more comments

It's not really a function of git, msys, or bash; every windows console program is stuck using the same cumbersome copy/paste mechanism for hysterical raisins. Turning on QuickEdit mode can help -- or you can install a nice alternative console like this one, and change your git bash shortcut to use it instead.

share|improve this answer
1  
For those who want to know how to use Console2: lostechies.com/jimmybogard/2010/04/05/… – Arkain Nov 24 '11 at 7:12
2  
Don't know why this answer gets so less votes, it's the best – CharlesB Dec 13 '11 at 22:30
1  
+1 for hysterical raisins. I think I will start using that from now on. – Steven Lu Feb 2 at 3:08

Copy:

Long-term solution: Click on Topleft icon > Defaults > Select "QuickEdit Mode" under "Edit Options" > Okay

Then select the text you want to copy. Press Enter

Short-term solution: Click on Topleft icon > Edit > Mark. Press Enter.

Paste:

Press "Insert"

(If the "QuickEdit Mode" is on, Right clicking might work too.)

share|improve this answer

Use Shift + Insert like in linux bash

Edit: It works even in putty.

share|improve this answer

most of these answers require using the mouse.. keyboard shortcuts are much quicker! try holding Alt then pressing Space then E then P

On Windows this jumps to the window menu, space opens it, E jumps to edit and P executes the paste command. Get these correct in succession and you can paste a snippet in under 2 seconds..

share|improve this answer

if your intention is copy/paste comments for git commits, try set the enviromental variable EDITOR as your favorite plain-text editor (notepad, notepad++ ...) and when you will commit, don't give him the -m option and Git will open your favorite editor for copy/paste you comment

share|improve this answer

Get Console2. You configure it to do it multiple different ways. Works with bash or Windows command prompts.

share|improve this answer

I was actually wondering how to do this today...and coincidentally, Phil Haack posted a tip about using posh-git (Git on powershell), which gives you tab auto-complete and a few more cool bits. I'm not going back to Git bash.

check it out

http://haacked.com/archive/2011/12/13/better-git-with-powershell.aspx

share|improve this answer

console2 ( http://sourceforge.net/projects/console/ ) is my go to terminal front end.

it add great features like copy/paste, resizable windows, and tabs. you can also integrate as many "terminals" as you want into the app. i personally use cmd (the basic windows prompt), mingW/msysGit, and i have shortcuts for diving directly into the python and mysql interpreters.

the "shell" argument i use for git (on a win7 machine) is:

C:\Windows\SysWOW64\cmd.exe /c ""C:\Program Files (x86)\Git\bin\sh.exe" --login -i"

share|improve this answer

This is suggested by the github help page:

clip < filename

this copies the contents of filename to the clipboard and is useful for doing things like copying your id_rsa.pub to a web form.

share|improve this answer

COPY:Click the title bar, choose mark, then select the content you want to copy. PASTE: Copy what you want to past, focus on the bash, hit the insert key on the keyboard.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.