"Normally", these instructions should be also valid (in similar way) for other Linux distros.
1.- Install Xdebug using pacman:
sudo pacman -Sy xdebug
[global_config] | |
window_state = maximise | |
handle_size = 0 | |
title_hide_sizetext = True | |
title_transmit_fg_color = "#bd93f9" | |
title_inactive_fg_color = "#f8f8f2" | |
title_receive_bg_color = "#282a36" | |
title_transmit_bg_color = "#282a36" | |
title_receive_fg_color = "#8be9fd" |
A list of commonly asked questions, design decisions, reasons why Clojure is the way it is as they were answered directly by Rich (even when from many years ago, those answers are pretty much valid today!). Feel free to point friends and colleagues here next time they ask (again). Answers are pasted verbatim (I've made small adjustments for readibility, but never changed a sentence) from mailing lists, articles, chats.
How to use:
Não é possível desfazer um push diretamente, como é feito com o commit utilizando o comando $ git reset --soft|mixed|hard hash-do-penultimo-commit
Para desfazer um push são necessários 3 passos:
$ git reset --mixed HEAD~1
e em seguida utilizar o comando $ git stash
(se preferir pode usar a opção -m "revertendo o push blablabla"
para salvar o stash com um contexto do que foi feito$ git revert HEAD~0
$ git stash apply
$ git push origin sua-branch -f