Posts by C ou não C • 72 points
2 posts
- 
		2 votes1 answer318 viewsA: How do I update all files from a GIT repository except one specific one?To make the git pull origin <branch> without changing any modified file in your local repository, you can perform the following steps: Save changed files to a queue: git stash Download the… gitanswered C ou não C 72
- 
		3 votes2 answers278 viewsQ: How to know key values in Javascript?I’m developing a basic game in Javascript, and the player has some actions, already implemented the ActionListener, but I’m having trouble finding the key values to use in ActionListener. I was…