Tag: git
-
Remove Untracked Files with Git
When working with Git I sometimes end up with a lot of untracked local files that I want to get rid of. For example, compiling things and testing around can create more stuff than expected or a git reset origin/master rolling back a lot of commits can leave a bunch of leftovers. To me this…
-
Managing Your Git Repositories with ghq
The more you work with git to manage your code (or other stuff), the messier your directory structure becomes and after a few years you will maybe end up with something like this: At least for me this happened. Most of these directories were at least actual git repositories but some were not. Obviously this…