Posts by LeAndrade • 8,475 points
404 posts
-
10
votes2
answers412
viewsQ: Is Markdown not working on README on Github?
Just put it in the file for example README the symbol # before a title that Github automatically transforms into h1 or you have to set up or download something for Markdown to work.…
-
2
votes2
answers1758
viewsQ: I can’t clone repository with git bash
I wonder why I can’t clone a public Github repository with git bash. I give the command git clone plus ssh or https, but gives the following message: Permission denied (publickey). Fatal: Could not…
-
4
votes4
answers5886
viewsQ: Git bash does not accept paste command
I wonder why git bash does not accept the Ctrl+V command. Every time I have to clone a repository on github I have to type in the whole url!
-
1
votes1
answer3105
viewsQ: How to make an input increment or decrement numbers with javascript
function Num() { var numero = document.getElementById('num'); numero = 0; document.getElementById('menos').click(function() { numero--; }); document.getElementById('mais').click(function() {…