I guess most of you, developers, use any VCS, and I hope some of you use Git. Do you have any tip or trick how to get a download URL for a single file in a repository?
I don't want …
I have many Git branches. How do I delete branches which have already been merged? Is there an easy way to delete them all instead of deleting them one by one?
Which one of these lines is correct?
git checkout 'another_branch'
Or
git checkout origin 'another_branch'
Or
git checkout origin/'another_branch'
And what is the difference between them?