Git bash does not accept the paste command

3

I would like to know why git bash does not accept the ctrl + V command. Every time I have to clone a repository in github I have to type the entire url!

    
asked by anonymous 27.07.2017 / 17:42

2 answers

4

Commands like Ctrl + c and Ctrl + v in bash do not copy and paste respectively.

For Windows environment , the following options work:

  • Try by right-clicking, like this:

  • You can also use the middle mouse button (option suggested by lazyFox).

Note: I've worked on other versions of bash , where clicking on the icon in the upper corner of the dialog box displayed an option to paste as well. I have tried the Insert and

option here (     
27.07.2017 / 17:57
5

In Git Bash (and in many other software) Shift + Insert paste the text that is in the clipboard.

    
27.07.2017 / 17:59