Is there any shortcut available to copy entire source code from a bitbucket file
without selecting view raw file option
?
Asked
Active
Viewed 127 times
1

Vadim Kotov
- 8,084
- 8
- 48
- 62

Abhilash
- 2,864
- 3
- 33
- 67
1 Answers
2
You can try and archive the remote repo for one file, using git archive --remote
.
git archive --remote=ssh://host/pathto/repo.git HEAD README.md | tar -xO
-
is there any shortcuts available for browser?? – Abhilash May 03 '16 at 03:11
-
1@Abhilash Not that I know of. – VonC May 03 '16 at 04:54