I'm using msysgit running on Windows XP.
Tried Ctrl+V, Right click, Middle click, google... no luck.
|
I'm using msysgit running on Windows XP. Tried Ctrl+V, Right click, Middle click, google... no luck. |
|||
|
|
|
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.) |
|||||||||||||||||||||
|
|
Aside from using the edit menu commands, you can directly paste into the git bash window using the keyboard shortcut, Insert. |
|||||||||||||||||
|
|
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. |
|||||||||||||
|
|
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.) |
|||
|
|
|
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.. |
|||
|
|
|
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 |
|||
|
|
|
Get Console2. You configure it to do it multiple different ways. Works with bash or Windows command prompts. |
|||
|
|
|
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 |
|||
|
|
|
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:
|
|||
|
|
|
This is suggested by the github help page:
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. |
|||
|
|
|
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. |
|||
|
|