Ranter
Join devRant
Do all the things like
				++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
				Sign Up
			Pipeless API
				From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
				Learn More
			Comments
		- 
				
				Also what could possibly be the reason that a `git stash` on Windows 10 takes like a minute, while the same `git stash` in said virtual machine running inside said Windows 10 takes a fraction of a second?
 - 
				
				@sbiewald Hmmm... Didn't think of that one. That is a good point. Will check that, thanks!!
 - 
				
				@Haxk20 I think it must have to do with the file system.... I cannot believe that this is only due to optimizations.
 - 
				
				
Geoxion8565y@Haxk20 I don't know about the compilation speed, but git performance is very dependent on the file system.
Git is/was made for Linux and opening files is very fast on Linux. Git uses a lot of files to do its thing and it can do that because it gets away with it.
Windows on the other hand has a very different file system. Opening files is relatively slow. So when git does its thing, it's doing a lot of slow things. Enough to notice anyways.
Does this mean that the windows fs is bad? No. It's just slower in opening files. It's probably faster/better in other areas. - 
				
				foox655yDid you try to compile with mingw/.. And using git In for example cygwin? Would be interesting whether that's faster. Guess either multi-core make or something like /MP can help too, if not already used.
But Ja, our developers who use Windows feel the same especially when debugging 
Related Rants
- 
						
							
xjose97x20Just saw a variable in C named like this: long time_ago; //in a galaxy far away I laughed no stop. - 
						
							
linuxxx32*client calls in* Me: good morning, how can I help you? Client: my ip is blocked, could you unblock it for m... - 
						
							
DRSDavidSoft30
Found this in our codebase, apparently one of my co-workers had written this 

Why the hell does it take twice as long to compile my software project under MSVC and Windows 10 compared to a GCC on a Linux *virtual machine* running inside the same Windows 10?!?
rant
wtf
c++
msvc
windows10