Posts by Gabriel Saraiva • 76 points
3 posts
-
1
votes1
answer510
viewsA: Push does not go to remote and does not error
First, you’re trying to make a push -f, check if you have authorization for this. Second, their commits total 14MB, make sure you have large files and your remote repository supports files of these…
-
4
votes2
answers1001
viewsA: How to debug shell script in linux?
To debug Bash-Script there are some very useful tools: Parameter -n in the bash The use of the command bash -n parses your script, to check if there are typos or that prevent your script from…
-
1
votes3
answers272
viewsA: Incompatible types?
Really like Maniero said there is a ";" in what kills your for. All code is executed only once regardless of the for validation. for(i = 0; i < 30; i++); <---- Esse ponto e virgula aqui! {…