This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Make asynchronous requests to different resources as fast as possible and process the results as they are ready. | |
*/ | |
class Requests | |
{ | |
public $handle; | |
public function __construct() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#1. Получаем хэш-код коммита, к которому хотим вернуться. | |
#2. Заходим в папку репозитория и пишем в консоль: | |
# $ git reset --hard ХЭШ-КОМИТА | |
# $ git push --force | |
# Или | |
$ git reset --hard HEAD~1 | |
$ git push --force |